import { MiuraElement } from '@miurajs/miura-element'; import './dialog.js'; import './input.js'; import './menu.js'; export declare class MuiCommandPalette extends MiuraElement { static properties: { open: { type: BooleanConstructor; default: boolean; reflect: boolean; }; commands: { type: ArrayConstructor; default: () => never[]; }; query: { type: StringConstructor; default: string; }; }; open: boolean; commands: Array<{ id: string; label: string; icon?: string; shortcut?: string; disabled?: boolean; }>; query: string; static styles: import("@miurajs/miura-render").CSSResult; private get filteredCommands(); private select; template(): import("@miurajs/miura-render").TemplateResult; } //# sourceMappingURL=command-palette.d.ts.map