import { VNode } from 'vue'; type __VLS_Props = Props; export interface Command { title: string; description?: string; group?: string; keywords?: string[]; icon?: VNode; shortcut?: string; href?: string; handler?: () => void; } interface Props { /** * Controls whether the commands modal is visible */ open: boolean; /** * Placeholder text shown in the search input */ placeholder?: string; /** * List of commands to display and search through */ commands: Command[]; /** * Shows a spinner in place of the search icon while true. Useful if external * async data related to commands is loading. */ loading?: boolean; /** * Renders the commands palette in a compact layout */ compact?: boolean; } type __VLS_ModelProps = { 'search'?: string; 'group'?: string | null; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_102: { commands: Record; }, __VLS_104: { command: Command; group: string; }, __VLS_106: { command: Command; }; type __VLS_Slots = {} & { default?: (props: typeof __VLS_102) => any; } & { command?: (props: typeof __VLS_104) => any; } & { icon?: (props: typeof __VLS_106) => any; }; declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:search": (value: string) => any; "update:group": (value: string | null) => any; } & { close: () => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onClose?: (() => any) | undefined; "onUpdate:search"?: ((value: string) => any) | undefined; "onUpdate:group"?: ((value: string | null) => any) | undefined; }>, { placeholder: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };