import type { FormHorizontal } from '../types'; export declare const makeLabelClassByHorizontal: (leftFixed: FormHorizontal["leftFixed"], left?: number) => string; /** * 需要加上mt-1.5的form item组件类型 */ export declare const hasMarginTopForValue: (itemType: string) => boolean; export declare const controlClassBySize: Record<'xs' | 'sm' | 'normal' | 'md' | 'lg' | 'xl' | 'full', string>; /** * form item 通用的 props */ export declare const formItemCommPropsList: string[]; /** * options 类的 formitem 通用的默认props */ export declare const OptionsControlDefaultProps: { delimiter: string; labelField: string; valueField: string; joinValues: boolean; extractValue: boolean; multiple: boolean; placeholder: string; resetValue: string; deleteConfirmText: string; };