import { CaptureResource } from "./capture.js"; import { DeploymentsResource } from "./resources/deployments.js"; import { IngestResource } from "./resources/ingest.js"; import { ProtectionResource } from "./resources/protection.js"; import { VerdictsResource } from "./resources/verdicts.js"; import { type RelivioStatsSnapshot } from "./stats.js"; import { type RelivioOptions } from "./types/options.js"; export declare class Relivio { readonly capture: CaptureResource; readonly deployments: DeploymentsResource; readonly ingest: IngestResource; readonly protection: ProtectionResource; readonly verdicts: VerdictsResource; private readonly statsStore; constructor(options: RelivioOptions); stats(): RelivioStatsSnapshot; status(): RelivioStatsSnapshot; captureException(...args: Parameters): Promise; } //# sourceMappingURL=client.d.ts.map