import * as React from 'react'; import { type AutocompleteProps } from '@mui/material'; import { type ComponentsOverrides } from '@mui/material/styles'; import type { CommonInputProps } from './CommonInputProps'; export type TextArrayInputProps = CommonInputProps & Omit, 'options' | 'renderInput' | 'renderTags' | 'multiple' | 'freeSolo'> & Partial, 'options' | 'renderTags'>>; export declare const TextArrayInput: (inProps: TextArrayInputProps) => React.JSX.Element; declare module '@mui/material/styles' { interface ComponentNameToClassKey { RaTextArrayInput: 'root'; } interface ComponentsPropsList { RaTextArrayInput: Partial; } interface Components { RaTextArrayInput?: { defaultProps?: ComponentsPropsList['RaTextArrayInput']; styleOverrides?: ComponentsOverrides>['RaTextArrayInput']; }; } } //# sourceMappingURL=TextArrayInput.d.ts.map