export declare const multiSelectProps: { dataSource: { type: ArrayConstructor; default: () => never[]; }; modelValue: { type: (ArrayConstructor | StringConstructor)[]; default: string; }; searchValue: { type: StringConstructor; default: string; }; defaultSelectedArray: { type: ArrayConstructor; default: () => never[]; }; filterable: { type: BooleanConstructor; default: boolean; }; searchPlaceholder: { type: StringConstructor; default: () => any; }; type: { type: PropType<"wheel" | "list">; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; mask: { type: BooleanConstructor; default: boolean; }; maskOptions: { type: ObjectConstructor; default: () => {}; }; };