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