///
interface AutocompleteProps {
options: T[];
label: string;
getOptionLabel: (option: T) => string;
onChange: (value: T | null) => void;
onReset?: () => void;
required?: boolean;
}
export default function Autocomplete(Props: AutocompleteProps): JSX.Element;
export {};