///
import { IDropdownProps } from '../Dropdown/Dropdown';
export interface ISearchBoxProps {
buttonVariant?: 'outlined' | 'contained';
size?: 'small' | 'medium';
placeholder?: string;
value?: string;
disabled?: boolean;
onChange?: (event: React.ChangeEvent) => void;
onClear?: () => void;
onSearch?: (search: string) => void;
defaultValue?: string;
width?: string | number;
textboxProps?: any;
showDropdownSelection?: boolean;
isHighLighted?: boolean;
dropdownSelectionProps?: IDropdownProps;
}
declare const SearchBox: ({ buttonVariant, size, value, onChange, onClear, onSearch, disabled, width, placeholder, textboxProps, defaultValue, showDropdownSelection, isHighLighted, dropdownSelectionProps }: ISearchBoxProps) => import("react/jsx-runtime").JSX.Element;
export default SearchBox;