import type { StorageOptions } from '@google-cloud/storage'; import type { Adapter } from '../../types'; export interface Args { acl?: 'Private' | 'Public'; bucket: string; options: StorageOptions; } export declare const gcsAdapter: ({ acl, bucket, options }: Args) => Adapter; //# sourceMappingURL=index.d.ts.map