import { h } from 'preact';
type Props = {
    searchString: string;
    setSearchString: (s: string) => void;
    submitSearchString: () => void;
    wrapperClassName: string;
    inputClassName: string;
    inputLabel: string;
    clearSearchLabel?: string;
    showButton?: boolean;
    buttonLabel?: string;
    buttonCSSClassName?: string;
};
declare function SearchInput({ searchString, setSearchString, submitSearchString, wrapperClassName, inputClassName, inputLabel, clearSearchLabel, showButton, buttonLabel, buttonCSSClassName, }: Props): h.JSX.Element;
export default SearchInput;
//# sourceMappingURL=SearchInput.d.ts.map