import type { ExtractPropTypes } from 'vue'; import type { FileType, UploadProps } from 'ant-design-vue/es/upload/interface.d.ts'; import type { UploadRequestOption } from 'ant-design-vue/es/vc-upload/interface.d.ts'; import type UploadImage from './upload-image.vue'; export declare const borderType: readonly ["dotted", "solid", "dashed"]; export declare const uploadImageProps: { readonly width: import("ll-plus/es/utils").EpPropFinalized; readonly height: import("ll-plus/es/utils").EpPropFinalized; readonly borderRadius: import("ll-plus/es/utils").EpPropFinalized; readonly borderType: import("ll-plus/es/utils").EpPropFinalized; readonly isDrag: import("ll-plus/es/utils").EpPropFinalized; readonly uploadTitle: import("ll-plus/es/utils").EpPropFinalized; readonly uploadTip: import("ll-plus/es/utils").EpPropFinalized; readonly uploadIcon: import("ll-plus/es/utils").EpPropFinalized; readonly uploadIconSize: import("ll-plus/es/utils").EpPropFinalized; readonly value: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, readonly [], boolean>; readonly imgLoading: import("ll-plus/es/utils").EpPropFinalized; readonly useBase64: import("ll-plus/es/utils").EpPropFinalized; readonly maxCount: import("ll-plus/es/utils").EpPropFinalized; readonly accept: import("ll-plus/es/utils").EpPropFinalized; readonly imgSize: import("ll-plus/es/utils").EpPropFinalized; readonly beforeUpload: import("ll-plus/es/utils").EpPropFinalized (string | boolean | void | Blob | FileType) | Promise>, unknown, unknown, () => true, boolean>; readonly customRequest: import("ll-plus/es/utils").EpPropFinalized void>, unknown, unknown, () => void, boolean>; readonly isPreview: import("ll-plus/es/utils").EpPropFinalized; readonly isDelete: import("ll-plus/es/utils").EpPropFinalized; }; export declare const uploadImageEmits: { readonly change: (value: string | string[] | undefined) => boolean; readonly 'update:value': (value: string | string[] | undefined) => boolean; }; export type RcFileType = FileType; export type RcUploadRequestOption = UploadRequestOption; export type RcUploadProps = UploadProps; export type UploadImageProps = ExtractPropTypes; export type UploadImageEmits = typeof uploadImageEmits; export type UploadImageInstance = InstanceType;