import type { BaseProps, FullWidthComponent, KeyboardHandler } from '../../type/component';
interface Props extends BaseProps, FullWidthComponent, KeyboardHandler {
    placeholder?: string;
    value?: string;
    name?: string;
    oninput?: (event: Event) => void;
    onchange?: (event: Event) => void;
    onfocus?: (event: FocusEvent) => void;
    onblur?: (event: FocusEvent) => void;
}
declare const SearchBar: import("svelte").Component<Props, {}, "value">;
type SearchBar = ReturnType<typeof SearchBar>;
export default SearchBar;
//# sourceMappingURL=SearchBar.svelte.d.ts.map