/** * CommandPalette Component * * Modern fuzzy-finder command palette with Panel wrapping, category badges, * result count, scrollbar, and accent bar selection. * * @since v2.7.8 - Redesigned with Panel, Scrollbar, category badges * @since v1.72.0 - Added fuzzy matching and field filters */ import type React from 'react'; import type { Tier } from '../../../core/types/auth.js'; import type { UICommand } from '../../commands/index.js'; export interface CommandPaletteProps { commands: UICommand[]; onExecute: (command: UICommand) => void; onClose: () => void; isActive?: boolean; maxHeight?: number; tier?: Tier; } export declare function CommandPalette({ commands, onExecute, onClose, isActive, maxHeight, tier }: CommandPaletteProps): React.ReactElement; //# sourceMappingURL=CommandPalette.d.ts.map