/** 图片的尺寸 */
export type SizeType = {
    /** 原图 */
    original: string;
    /** compressed */
    compressed: string;
};
/** 图片的来源 */
export type SourceType = {
    /** 从相册选图 */
    album: string;
    /** 使用相机 */
    camera: string;
};
/** 视频的来源 */
export type MediaType = {
    /** 只能拍摄图片或从相册选择图片 */
    image: string;
    /** 只能拍摄视频或从相册选择视频 */
    video: string;
};
export type TFileType = {
    size: number;
    type?: string;
    fileType?: string;
    originalFileObj?: any;
    tempFilePath?: string;
    thumbTempFilePath?: string;
    path?: string;
};
export type StatusMessage = {
    deleteWord?: string;
    error?: string;
    list?: string;
    ready?: string;
    readyUpload?: string;
    success?: string;
    uploading: string;
    waitingUpload?: string;
};
