import type { TokenCredential } from '@azure/core-http'; import type { AnonymousCredential, StorageSharedKeyCredential } from '@azure/storage-blob'; import type { Adapter } from '../../types'; export interface Args { allowContainerCreate: boolean; baseURL: string; connectionString: string; containerName: string; credential?: AnonymousCredential | StorageSharedKeyCredential | TokenCredential; } export declare const azureBlobStorageAdapter: ({ allowContainerCreate, baseURL, connectionString, containerName, credential, }: Args) => Adapter; //# sourceMappingURL=index.d.ts.map