import type { HTMLInputAttributes } from 'svelte/elements';
import type { Snippet } from 'svelte';
interface Props {
value: string;
autofocus?: boolean;
debounce?: number;
label?: string | Snippet;
hideLabel?: boolean;
id?: string;
ref: HTMLElement;
removeFormAriaAttributes?: boolean;
ontype?: (value: string) => void;
onclear?: () => void;
}
type $$ComponentProps = Props & HTMLInputAttributes;
declare const Search: import("svelte").Component<$$ComponentProps, {}, "value" | "ref">;
type Search = ReturnType;
export default Search;