import { TextFieldProps as MuiTextFieldProps } from '@mui/material'; import { ReactNode } from 'react'; export type TextFieldProps = MuiTextFieldProps & { endLabel?: ReactNode; hasCounter?: boolean; maxLength?: number; shouldKeepExtraSpaceForHelperText?: boolean; }; export declare function TextField({ label, endLabel, disabled, hasCounter, shouldKeepExtraSpaceForHelperText, helperText, maxLength, onChange: handleChange, ...props }: TextFieldProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TextField.d.ts.map