/** * @author yaoxue * @date 2024/08/22 * @description 表单项标签 */ import { FC, ReactNode } from 'react'; import { FormLabelAlign } from './interface'; import type { LabelProps } from '../Label'; export interface FormItemLabelProps { fieldId?: string; labelAlign?: FormLabelAlign; labelWrap?: boolean; labelWidth?: number | string; label?: ReactNode; labelProps?: Omit; hideLabel?: boolean; colon?: boolean; layout?: 'horizontal' | 'vertical'; } declare const FormItemLabel: FC; export default FormItemLabel;