import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js"; import * as core from "../../../../core/index.js"; import * as BasisTheory from "../../../index.js"; import { Domain } from "../resources/domain/client/Client.js"; import { Merchant } from "../resources/merchant/client/Client.js"; import { Session } from "../resources/session/client/Client.js"; export declare namespace ApplePay { interface Options extends BaseClientOptions { } interface RequestOptions extends BaseRequestOptions { } } export declare class ApplePay { protected readonly _options: ApplePay.Options; protected _merchant: Merchant | undefined; protected _domain: Domain | undefined; protected _session: Session | undefined; constructor(_options?: ApplePay.Options); get merchant(): Merchant; get domain(): Domain; get session(): Session; /** * @param {BasisTheory.ApplePayCreateRequest} request * @param {ApplePay.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link BasisTheory.BadRequestError} * @throws {@link BasisTheory.UnauthorizedError} * @throws {@link BasisTheory.ForbiddenError} * @throws {@link BasisTheory.UnprocessableEntityError} * * @example * await client.applePay.create() */ create(request?: BasisTheory.ApplePayCreateRequest, requestOptions?: ApplePay.RequestOptions): core.HttpResponsePromise; private __create; /** * @param {string} id * @param {ApplePay.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link BasisTheory.UnauthorizedError} * @throws {@link BasisTheory.ForbiddenError} * @throws {@link BasisTheory.NotFoundError} * * @example * await client.applePay.get("id") */ get(id: string, requestOptions?: ApplePay.RequestOptions): core.HttpResponsePromise; private __get; /** * @param {string} id * @param {ApplePay.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link BasisTheory.UnauthorizedError} * @throws {@link BasisTheory.ForbiddenError} * @throws {@link BasisTheory.NotFoundError} * * @example * await client.applePay.delete("id") */ delete(id: string, requestOptions?: ApplePay.RequestOptions): core.HttpResponsePromise; private __delete; protected _getCustomAuthorizationHeaders(): Promise>; }