import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.js"; import * as core from "../../../../core/index.js"; import * as Vital from "../../../index.js"; export declare namespace PayorClient { type Options = BaseClientOptions; interface RequestOptions extends BaseRequestOptions { } } export declare class PayorClient { protected readonly _options: NormalizedClientOptionsWithAuth; constructor(options?: PayorClient.Options); /** * @param {Vital.CreatePayorBody} request * @param {PayorClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Vital.UnprocessableEntityError} * * @example * await client.payor.createPayor({ * name: "name", * address: { * firstLine: "first_line", * country: "country", * zip: "zip", * city: "city", * state: "state" * } * }) */ createPayor(request: Vital.CreatePayorBody, requestOptions?: PayorClient.RequestOptions): core.HttpResponsePromise; private __createPayor; }