type SlashCommandItem = { name: string; description: string; }; type SlashCommandsProps = { items: readonly SlashCommandItem[]; highlightIndex: number; }; export declare function SlashCommands({ items, highlightIndex }: SlashCommandsProps): import("react/jsx-runtime").JSX.Element | null; export {};