import { TextFieldProps } from '../../TextField'; import { AutocompleteRenderInputParams } from '@mui/material'; import { ReactNode } from 'react'; export interface RenderTextFieldParams { autocompleteRenderInputParams: AutocompleteRenderInputParams; hasCounter?: boolean; hasPlaceholder: boolean; maxLength?: number; offset: number; textFieldProps?: Partial; } export declare function renderTextField({ autocompleteRenderInputParams: params, hasCounter, hasPlaceholder, maxLength, offset, textFieldProps, }: RenderTextFieldParams): ReactNode; //# sourceMappingURL=renderTextField.d.ts.map