import { type TelemetryClient } from '@aztec/telemetry-client'; import type { BlobWithIndex } from '../types/blob_with_index.js'; export declare class BlobSinkMetrics { private storeBlobRequests; private getBlobRequests; /** The number of blobs in the blob store */ private objectsInBlobStore; /** Tracks blob size */ private blobSize; constructor(telemetry: TelemetryClient); recordBlobReceipt(blobs: BlobWithIndex[]): void; incStoreBlob(success: boolean): void; incGetBlob(success: boolean): void; } //# sourceMappingURL=metrics.d.ts.map