import { SvelteComponentTyped } from "svelte"; import type { SearchInputEvent, SearchOptionClickEvent, SearchSubmitEvent } from '.'; declare const __propDef: { props: { text?: string | undefined; suggestions?: string[] | undefined; placeholder?: string | undefined; }; events: { iconRightClick: CustomEvent; input: CustomEvent; optionClick: CustomEvent; submit: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { iconleft: { slot: string; }; iconright: { slot: string; }; }; }; export type SearchbarProps = typeof __propDef.props; export type SearchbarEvents = typeof __propDef.events; export type SearchbarSlots = typeof __propDef.slots; /** * Searchbar * * TODO * * Searchbar Component. Behaves like a TextInput and a Dropdown * * Props: * - text * - suggestions * - placeholder * * Slots: * - default: Expects `