import type { ExtractPropTypes } from 'vue'; export declare const gridInputProps: { readonly size: { type: PropType<"default" | "small" | "large">; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: undefined; }; /** 值 */ readonly modelValue: { readonly type: StringConstructor; readonly default: ""; }; /** 分隔符 */ readonly separator: { readonly type: StringConstructor; readonly default: "-"; }; /** 最大个数 */ readonly max: { readonly type: NumberConstructor; readonly default: 5; }; /** 能否输入0 */ readonly zero: { readonly type: BooleanConstructor; readonly default: false; }; readonly label: { type: StringConstructor; }; readonly field: { type: StringConstructor; }; readonly tips: { type: StringConstructor; }; readonly span: { type: PropType; }; readonly required: { type: BooleanConstructor; }; }; export type GridInputProps = ExtractPropTypes;