import type { File } from '@google-cloud/storage'; export declare const getStorageDiffOperations: ({ objects, bundle, prefix, }: { objects: File[]; bundle: string; prefix: string; }) => Promise<{ toDelete: File[]; toUpload: string[]; existingCount: number; }>;