import type { AwsRegion, RequestHandler } from '@remotion/lambda-client'; import type { Privacy, UploadDirProgress } from '@remotion/serverless'; export type MockFile = { name: string; content: string; }; type UploadDirInput = { bucket: string; region: AwsRegion; localDir: string; keyPrefix: string; onProgress: (progress: UploadDirProgress) => void; privacy: Privacy; toUpload: string[]; forcePathStyle: boolean; requestHandler: RequestHandler | null; }; export declare const uploadDir: ({ bucket, region, localDir, onProgress, keyPrefix, privacy, toUpload, forcePathStyle, requestHandler, }: UploadDirInput) => Promise; export {};