import type { BlobStoreSpec, PutResult, HasResult, GetResult } from './spec.js'; export declare class BlobStoreHandler implements BlobStoreSpec { private readonly root; constructor(root: string); put(buffer: Buffer, mime: string): Promise; private findBySha; fetch(url: string, mimeHint?: string): Promise; has(sha256: string): Promise; get(sha256: string): Promise; }