import type { SxProps } from '@mui/material';
import { FC } from 'react';
declare const SearchInput: FC<{
    onSearch: (searchKey: string) => void;
    onClear: () => void;
    sx?: SxProps;
}>;
export default SearchInput;
