import { type GetBlobResult, type GetCommandOptions, type ListBlobResult, type ListCommandOptions, type PutBlobResult, type PutCommandOptions } from "@vercel/blob"; import type { BlobStore, PutBody } from "./types.js"; export declare class VercelBlobStore implements BlobStore { private token?; constructor(token?: string); get(pathname: string, options: GetCommandOptions): Promise; put(pathname: string, body: PutBody, options: PutCommandOptions): Promise; del(urlOrPathname: string | string[]): Promise; list(options?: ListCommandOptions): Promise; } //# sourceMappingURL=blob-store.d.ts.map