import type { SearchDoc } from '../../core/index.js'; type $$ComponentProps = { /** * Lazily provide the generated search records. Wired by the consumer so the * index is code-split and only fetched when the palette first opens, e.g. * `() => import('svelte-docsmith/search').then((m) => m.docs)`. * * Receives the active version id on a versioned site, so a loader may * return just that version's records; results are scoped either way. */ load: (versionId?: string) => Promise; placeholder?: string; }; declare const Search: import("svelte").Component<$$ComponentProps, {}, "">; type Search = ReturnType; export default Search;