import { SvelteComponentTyped } from "svelte"; import type MaterialIcons from '../../types/material-icons'; export interface SearchResult { icon: MaterialIcons; title: string; description: string; } declare const __propDef: { props: { handleClose: () => void; onChange?: ((e: Event) => void) | undefined; title?: string | undefined; results?: SearchResult[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type CommandPaletteProps = typeof __propDef.props; export declare type CommandPaletteEvents = typeof __propDef.events; export declare type CommandPaletteSlots = typeof __propDef.slots; export default class CommandPalette extends SvelteComponentTyped { } export {};