import type { BasicType } from '../../_utils'; import type { ExtractPropTypes, PropType } from 'vue'; import type { VormItemRules, VormItemRulesItem } from './interface'; export declare const Props: { /** label */ readonly label: BasicType, string | null>; /** 对应的验证规则名称 */ readonly name: BasicType, string | null>; /** 规则 */ readonly rules: { readonly type: PropType; readonly default: () => null; }; }; /** form-item 组件 props 类型 */ export type VormItemProps = ExtractPropTypes;