type uploadOption = { bucket?: string; dir?: string; withSuFuffix?: boolean; }; export declare const commonUpload: (file: File, option: uploadOption | undefined, type: string) => Promise; export declare const upload: (file: File, option?: uploadOption) => Promise; export {};