import { InputHTMLAttributes } from 'react';
import { BaseComponentProps, Size } from '../../../types';
import './SearchBar.css';
export interface SearchBarProps extends BaseComponentProps, Omit, 'size' | 'className' | 'style'> {
size?: Size;
onSearch?: (value: string) => void;
onClear?: () => void;
clearable?: boolean;
}
export declare const SearchBar: import("react").ForwardRefExoticComponent>;
//# sourceMappingURL=SearchBar.d.ts.map