import type { UpLoadCallback } from './src/interface'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import UpLoad from "./src/up-load"; export declare const VUpLoad: Install, File[] | null>; readonly accept: BasicType, string | null>; readonly name: BasicType, string | null>; readonly drag: BasicType; readonly isRemove: BasicType; readonly showList: BasicType; readonly multiple: BasicType; readonly maxSize: BasicType; readonly maxLength: BasicType; readonly disabled: BasicType; readonly onLoad: BasicType, null>; readonly onChange: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:files": (files: File[]) => File[]; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, File[] | null>; readonly accept: BasicType, string | null>; readonly name: BasicType, string | null>; readonly drag: BasicType; readonly isRemove: BasicType; readonly showList: BasicType; readonly multiple: BasicType; readonly maxSize: BasicType; readonly maxLength: BasicType; readonly disabled: BasicType; readonly onLoad: BasicType, null>; readonly onChange: BasicType, null>; }>> & { "onUpdate:files"?: ((files: File[]) => any) | undefined; }, { readonly onLoad: UpLoadCallback; readonly disabled: boolean; readonly name: string; readonly onChange: UpLoadCallback; readonly maxLength: number; readonly files: File[]; readonly accept: string; readonly drag: boolean; readonly isRemove: boolean; readonly showList: boolean; readonly multiple: boolean; readonly maxSize: number; }>>; /** up-load 组件实例类型 */ export type UpLoadInstance = InstanceType; export * from './src/interface'; export default VUpLoad;