import { DialogProps } from '@mui/material';
import { SearchAutocompleteProps } from '../SearchAutocomplete';
export interface SearchDialogProps extends DialogProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Overrides props for the SearchAutocomplete component.
     */
    SearchAutocompleteComponentProps: SearchAutocompleteProps;
    /**
     * Other props
     */
    [p: string]: any;
}
export default function Search(inProps: SearchDialogProps): JSX.Element;
