import React from 'react'; import type { SlashCommand } from './commands.js'; interface CommandPaletteProps { commands: SlashCommand[]; onSelect: (name: string) => void; onCancel: () => void; } export declare function CommandPalette({ commands, onSelect, onCancel }: CommandPaletteProps): React.ReactNode; export {}; //# sourceMappingURL=CommandPalette.d.ts.map