import type { RenderProgress } from '@remotion/lambda-client/constants'; import type { CloudProvider, ReceivedArtifact } from '@remotion/serverless'; type DownloadedInfo = { totalSize: number | null; downloaded: number; doneIn: number | null; }; export declare const makeArtifactProgress: , Record, string, object>>(artifactProgress: ReceivedArtifact[]) => string | null; export declare const makeProgressString: ({ downloadInfo, overall, }: { overall: RenderProgress; downloadInfo: DownloadedInfo | null; }) => string; export {};