import type { InputProps } from '../input/Input';
export type FilterSearchProps = {
    label: string;
    submitBehavior?: 'manual';
    onChange?: (value: string) => void;
    className?: string;
} & Omit<InputProps, 'label' | 'labelDirection' | 'value' | 'onChange' | 'icon' | 'stretch' | 'size' | 'iconPosition' | 'showClearButton' | 'showSubmitButton' | 'type' | 'className' | 'autoCapitalize' | 'autoCorrect' | 'spellCheck'>;
declare function FilterSearch({ label, submitBehavior, onChange: onChangeProp, className, ...rest }: FilterSearchProps): import("react/jsx-runtime").JSX.Element;
export default FilterSearch;
