interface Props {
    searchString?: string;
    name: string;
    shouldFocus?: boolean;
    label?: string;
    labelClass?: string;
    helpText?: string;
    searchButtonText?: string;
    placeholder?: string;
    ariaControls?: string;
    ariaRemoveTextLabel?: string;
    inputClass?: string;
    class?: string;
}
declare const Search: import("svelte").Component<Props, {}, "searchString">;
type Search = ReturnType<typeof Search>;
export default Search;
