import type { PropType } from 'vue'; import type { ISearchConfigProp } from './type'; export declare const searchProps: { config: { type: PropType; default: () => {}; }; modelValue: (ObjectConstructor | ArrayConstructor)[]; columns: PropType; menu: PropType; array: BooleanConstructor; max: NumberConstructor; prefix: { type: StringConstructor; default: string; }; indexes: { type: PropType; default: undefined; }; gutter: import("element-plus/es/utils").EpPropFinalized; justify: import("element-plus/es/utils").EpPropFinalized; align: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; size: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; disabled: BooleanConstructor; labelWidth: import("element-plus/es/utils").EpPropFinalized; labelPosition: import("element-plus/es/utils").EpPropFinalized; rules: { readonly type: import("vue").PropType>>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; inlineMessage: BooleanConstructor; showMessage: import("element-plus/es/utils").EpPropFinalized; requireAsteriskPosition: import("element-plus/es/utils").EpPropFinalized; labelSuffix: import("element-plus/es/utils").EpPropFinalized; inline: BooleanConstructor; statusIcon: BooleanConstructor; validateOnRuleChange: import("element-plus/es/utils").EpPropFinalized; hideRequiredAsterisk: BooleanConstructor; scrollToError: BooleanConstructor; scrollIntoViewOptions: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export declare const searchEmits: { 'update:modelValue': (value: import("..").ExternalParam) => value is object | any[] | undefined; submit: (done: () => void, isValid: boolean, invalidFields?: import("..").InvalidFields) => boolean; reset: () => boolean; 'step-change': (active: import("element-plus").TabPaneName) => active is string | number; 'collapse-change': (active: import("element-plus").CollapseModelValue) => active is import("element-plus").CollapseActiveName[]; 'tab-change': (name: import("element-plus").TabPaneName) => name is string | number; 'add-item': (indexes: number[]) => boolean; 'remove-item': (indexes: number[]) => boolean; };