import React from 'react'; import { type PaletteEntry } from './palette-index.js'; interface CommandPaletteProps { entries: PaletteEntry[]; onPick: (entry: PaletteEntry) => void; onClose: () => void; } export declare function CommandPalette({ entries, onPick, onClose }: CommandPaletteProps): React.ReactElement; export {}; //# sourceMappingURL=CommandPalette.d.ts.map