import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { kitbookPath: string; open?: () => void; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SearchModalProps = typeof __propDef.props; export type SearchModalEvents = typeof __propDef.events; export type SearchModalSlots = typeof __propDef.slots; export default class SearchModal extends SvelteComponentTyped { get open(): () => void; } export {};