import { FC, PropsWithChildren } from 'react'; import { ICellProps } from '../cell'; interface IFieldProps extends Omit { /** * 自定义输入框 label 标签 */ label?: string; /** * 右侧内容对齐方式 * @default left */ bodyAlign?: 'left' | 'right' | 'center'; /** * 错误提示文案 */ errorMessage?: string; } declare const Field: FC>; export default Field;