import * as React from 'react'; import { TextFieldProps } from '@mui/material/TextField'; import type { UseFieldInternalProps } from '../hooks/useField'; import type { FieldSection } from '../../models'; export interface BaseFieldProps extends Omit, 'format'> { className?: string; format?: string; disabled?: boolean; ref?: React.Ref; } export interface FieldsTextFieldProps extends Omit { }