import type { BaseClientOptions } from "../../../../BaseClient"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient"; import { V2Client } from "../resources/v2/client/Client"; import { V3Client } from "../resources/v3/client/Client"; export declare namespace ContractsClient { type Options = BaseClientOptions; } export declare class ContractsClient { protected readonly _options: NormalizedClientOptionsWithAuth; protected _v2: V2Client | undefined; protected _v3: V3Client | undefined; constructor(options: ContractsClient.Options); get v2(): V2Client; get v3(): V3Client; }