import type { AutocompleteProps } from '@mui/material/Autocomplete'; import { MixedFieldProps } from './MixedField'; import React from 'react'; import { SxProps } from '@mui/material/styles'; export declare type Optional = Pick> & { [P in K]?: T[P]; }; export interface MixedAutocompleteProps = 'div'> extends Optional, 'color' | 'onClick'>, 'renderInput'>, Pick { buttonSx?: SxProps; translations?: Record; } declare function MixedAutocomplete = 'div'>({ buttonSx, children, color, label, onClick, translations, value: initialValue, variant, ...props }: MixedAutocompleteProps): JSX.Element; export default MixedAutocomplete;