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