import type { Blob } from '@aztec/blob-lib'; import type { BlobStore } from '../blobstore/index.js'; import { BlobWithIndex } from '../types/blob_with_index.js'; import type { BlobSinkClientInterface } from './interface.js'; export declare class LocalBlobSinkClient implements BlobSinkClientInterface { private readonly blobStore; constructor(blobStore: BlobStore); testSources(): Promise; sendBlobsToBlobSink(blobs: Blob[]): Promise; getBlobSidecar(_blockId: string, blobHashes: Buffer[]): Promise; } //# sourceMappingURL=local.d.ts.map