import type { _Object } from '@aws-sdk/client-s3'; import type { AwsProvider } from '@remotion/lambda-client'; import type { FullClientSpecifics } from '@remotion/serverless'; export declare const getS3DiffOperations: ({ objects, bundle, prefix, onProgress, fullClientSpecifics, }: { objects: _Object[]; bundle: string; prefix: string; onProgress: (bytes: number) => void; fullClientSpecifics: FullClientSpecifics; }) => Promise<{ toDelete: _Object[]; toUpload: string[]; existingCount: number; }>;