import type { UploadSummary } from './core/reporter'; export type UploadOptions = { localDir: string; bucket: string; env?: string; suffix?: string; include?: string[]; exclude?: string[]; force?: boolean; mode?: string; }; export type UploadResult = UploadSummary; export type LatestFolderOptions = { bucket: string; prefix: string; env?: string; mode?: string; }; export declare function upload(options: UploadOptions): Promise; /** 查询前缀下一层最新的 yyyyMMddHHmmss 目录名。 */ export declare function getLatestFolderName(options: LatestFolderOptions): Promise; //# sourceMappingURL=index.d.ts.map