import type { ExtractPropTypes } from 'vue';
import type { UploadFile, UploadFiles } from './upload';
import type UploadList from './upload-list.vue';
export declare const uploadListProps: {
    readonly files: import("hongluan-ui/es/utils").EpPropFinalized<import("vue").PropType<UploadFiles>, unknown, unknown, () => any[], boolean>;
    readonly disabled: import("hongluan-ui/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
    readonly handlePreview: import("hongluan-ui/es/utils").EpPropFinalized<import("vue").PropType<(uploadFile: UploadFile) => void>, unknown, unknown, () => void, boolean>;
    readonly listType: import("hongluan-ui/es/utils").EpPropFinalized<StringConstructor, "text" | "card" | "picture", unknown, "text", boolean>;
    readonly crossorigin: {
        readonly type: import("vue").PropType<import("hongluan-ui/es/utils").EpPropMergeType<import("vue").PropType<"" | "anonymous" | "use-credentials">, unknown, unknown>>;
        readonly required: false;
        readonly validator: (val: unknown) => boolean;
        __epPropKey: true;
    };
};
export declare type UploadListProps = ExtractPropTypes<typeof uploadListProps>;
export declare const uploadListEmits: {
    remove: (file: UploadFile) => boolean;
};
export declare type UploadListEmits = typeof uploadListEmits;
export declare type UploadListInstance = InstanceType<typeof UploadList>;
