import React from 'react'; import { Box, Text } from 'ink'; interface FooterProps { queryLength: number; } export const Footer: React.FC = ({ queryLength }) => ( {queryLength === 0 ? '? for shortcuts' : ''} Gemini );