import type { File } from "@google-cloud/storage"; import type { OffsetResumableDriver, ResumableDriverOptions } from "../index.js"; import { FilesError } from "./errors.js"; export declare const createGcsResumableDriver: (params: { file: File; bucket: string; key: string; opts: ResumableDriverOptions; wrapErr: (err: unknown) => FilesError; }) => OffsetResumableDriver; //# sourceMappingURL=gcs-resumable.d.ts.map