import type { ExtractPropTypes } from 'vue'; import type { EmitFn } from 'element-ultra/utils'; export declare const batchInputProps: { readonly size: { type: PropType<"default" | "small" | "large">; }; readonly placeholder: { readonly type: StringConstructor; readonly default: "新增"; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: undefined; }; readonly modelValue: { readonly type: PropType; }; readonly max: { readonly type: NumberConstructor; }; readonly itemDefault: { readonly type: PropType>; }; readonly allowAdd: { readonly type: BooleanConstructor; readonly default: true; }; readonly label: { type: StringConstructor; }; readonly field: { type: StringConstructor; }; readonly tips: { type: StringConstructor; }; readonly span: { type: PropType; }; readonly required: { type: BooleanConstructor; }; }; export declare const batchInputEmits: { 'update:modelValue': (value: any[]) => boolean; }; export type BatchInputProps = ExtractPropTypes; export type BatchInputEmits = EmitFn;