import { AutocompleteProps as MuiAutocompleteProps } from '@mui/material/Autocomplete'; type BaseProps = Omit, 'ref' | 'renderInput' | 'size'>; export type AutocompleteProps = BaseProps & { /** * The label content displayed above the input. */ label?: React.ReactNode; /** * The size of the component. * @default 'medium' */ size?: 'small' | 'medium' | 'large'; /** * Placeholder text inside the input. Derived from `label` when omitted. * Pass an empty string to disable the default placeholder. */ placeholder?: string; }; export declare const Autocomplete: import('../../../node_modules/react').ForwardRefExoticComponent>; export {};