import { OwnerStateThemeType } from './';
declare const Autocomplete: () => {
    MuiAutocomplete: {
        styleOverrides: {
            root: ({ theme }: OwnerStateThemeType) => {
                borderRadius: string;
                background: string;
                '&.Mui-disabled': {
                    background: string;
                    color: string;
                };
                '&::placeholder': {
                    color: string;
                };
            };
            listbox: ({ theme }: OwnerStateThemeType) => {
                color: string;
                fontSize: string;
                fontWeight: string;
                lineHeight: string;
            };
            option: ({ theme }: OwnerStateThemeType) => {
                '&.Mui-focused': {
                    backgroundColor: string;
                };
            };
        };
    };
};
export default Autocomplete;
