import type { DocumentState, JSONParser, OnPatch, SearchResultDetails } from '../../types.js'; import type { JSONPath } from 'immutable-json-patch'; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const SearchBox: $$__sveltets_2_IsomorphicComponent<{ json: unknown; documentState: DocumentState | undefined; parser: JSONParser; showSearch: boolean; showReplace: boolean; readOnly: boolean; columns: JSONPath[] | undefined; onSearch: (result: SearchResultDetails | undefined) => void; onFocus: (path: JSONPath, resultIndex: number) => Promise; onPatch: OnPatch; onClose: () => void; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type SearchBox = InstanceType; export default SearchBox;