import type { BaseClientOptions } from "../../../../BaseClient.js"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.js"; import { BlocksClient } from "../resources/blocks/client/Client.js"; export declare namespace AnomalyClient { type Options = BaseClientOptions; } export declare class AnomalyClient { protected readonly _options: NormalizedClientOptionsWithAuth; protected _blocks: BlocksClient | undefined; constructor(options: AnomalyClient.Options); get blocks(): BlocksClient; }