export interface SlashCommand { name: string; description: string; } export declare const SLASH_COMMANDS: SlashCommand[]; interface SlashMenuProps { filter: string; selectedIndex: number; } /** * Compact popover above the input box. Shows commands matching the current * input prefix; arrow keys and Tab cycle through them. * * Hidden when filter doesn't start with "/". */ export declare function SlashMenu({ filter, selectedIndex }: SlashMenuProps): import("react/jsx-runtime").JSX.Element | null; export declare function filterCommands(filter: string): SlashCommand[]; export {}; //# sourceMappingURL=SlashMenu.d.ts.map