export type BundleProgress = { progress: number; doneIn: number | null; }; export declare const makeBundleProgress: ({ progress, doneIn }: BundleProgress) => string; export type BucketCreationProgress = { creationState: 'Checking bucket' | 'Creating bucket' | 'Created bucket' | 'Used bucket'; doneIn: number | null; }; export declare const makeBucketProgress: ({ creationState, doneIn, }: BucketCreationProgress) => string; type UploadStats = { addedFiles: number; removedFiles: number; untouchedFiles: number; }; export type DeployToStorageProgress = { sizeUploaded: number; totalSize: number | null; doneIn: number | null; stats: UploadStats | null; }; export declare const makeDeployProgressBar: ({ sizeUploaded, totalSize, doneIn, stats, }: DeployToStorageProgress) => string; export {};