import { type TextFieldProps as MuiTextFieldProps } from '@mui/material'; import { type ReactNode } from 'react'; import { type WithoutEmotionSpecific } from '../types'; export type TextFieldProps = Omit, 'variant' | 'color'> & { /** * Флаг отображения успешного состояния */ success?: boolean; /** * Элемент, который добавляется в начало */ startAdornment?: ReactNode; /** * Элемент, который добавляется в конец */ endAdornment?: ReactNode; /** * Максимальная длина ввода */ maxLength?: number; /** * Параметр для обрезания пробелов в текст филде при вызове onBlur. * @default true * @example */ trimmed?: boolean; }; export declare const TextField: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;