import React from 'react'; import { LabelAlign } from './interface'; export interface FieldLabelProps { value?: string | number; width?: string | number; textAlign?: LabelAlign; prefixCls?: string; htmlFor?: string; requiredMark?: boolean; } declare const FieldLabel: React.FC; export default FieldLabel;