import { FC, ReactNode } from "react"; export interface CommandHintProps { command: string[]; description: ReactNode; } /** * CommandHint is a functional React component that renders a command hint * display. It presents a styled command and its corresponding description. * * @param command An array of strings representing the command to be displayed. * @param description A textual description of the command. * @returns A JSX element displaying the command and description. */ export declare const CommandHint: FC;