import { AutocompleteProps, GetChipProps } from './types'; import { TextFieldProps } from '../TextField'; import { ChipProps } from '@mui/material'; type PropsToExtend = Omit, 'onChange' | 'options' | 'renderInput'>; export interface ChipsTextFieldProps extends PropsToExtend { allowIdenticalChips?: boolean; chipProps: Partial; forbiddenSymbols?: string[]; getChipProps?: GetChipProps; hasCounter?: boolean; maxLength?: number; onChange?: (value: Value[]) => void; separators?: string[]; textFieldProps?: Partial; } export declare function ChipsTextField({ allowIdenticalChips, chipProps, forbiddenSymbols, getChipProps, hasCounter, maxLength, onChange: handleChange, separators, textFieldProps, value: initialValue, ...autoCompleteProps }: ChipsTextFieldProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ChipsTextField.d.ts.map