import type { AutocompleteRenderInputParams, TextFieldProps as TFP } from '@mui/material';
export default function AutocompleteTextField({ TextFieldProps, inputBoxVal, params, setInputValue, setCurrentSearch, }: {
    TextFieldProps: TFP;
    inputBoxVal: string;
    params: AutocompleteRenderInputParams;
    setInputValue: (arg: string) => void;
    setCurrentSearch: (arg: string) => void;
}): import("react/jsx-runtime").JSX.Element;
