import { AccountUpdater } from "./api/resources/accountUpdater/client/Client.js"; import { Agentic } from "./api/resources/agentic/client/Client.js"; import { ApplePay } from "./api/resources/applePay/client/Client.js"; import { ApplicationKeys } from "./api/resources/applicationKeys/client/Client.js"; import { Applications } from "./api/resources/applications/client/Client.js"; import { ApplicationTemplates } from "./api/resources/applicationTemplates/client/Client.js"; import { Documents } from "./api/resources/documents/client/Client.js"; import { Enrichments } from "./api/resources/enrichments/client/Client.js"; import { GooglePay } from "./api/resources/googlePay/client/Client.js"; import { Keys } from "./api/resources/keys/client/Client.js"; import { Logs } from "./api/resources/logs/client/Client.js"; import { NetworkTokens } from "./api/resources/networkTokens/client/Client.js"; import { Permissions } from "./api/resources/permissions/client/Client.js"; import { Proxies } from "./api/resources/proxies/client/Client.js"; import { Reactors } from "./api/resources/reactors/client/Client.js"; import { Roles } from "./api/resources/roles/client/Client.js"; import { Sessions } from "./api/resources/sessions/client/Client.js"; import { Tenants } from "./api/resources/tenants/client/Client.js"; import { Threeds } from "./api/resources/threeds/client/Client.js"; import { TokenIntents } from "./api/resources/tokenIntents/client/Client.js"; import { Tokens } from "./api/resources/tokens/client/Client.js"; import { Webhooks } from "./api/resources/webhooks/client/Client.js"; import type { BaseClientOptions, BaseRequestOptions } from "./BaseClient.js"; export declare namespace BasisTheoryClient { interface Options extends BaseClientOptions { } interface RequestOptions extends BaseRequestOptions { } } export declare class BasisTheoryClient { protected readonly _options: BasisTheoryClient.Options; protected _applications: Applications | undefined; protected _applicationKeys: ApplicationKeys | undefined; protected _applicationTemplates: ApplicationTemplates | undefined; protected _applePay: ApplePay | undefined; protected _googlePay: GooglePay | undefined; protected _documents: Documents | undefined; protected _tokens: Tokens | undefined; protected _enrichments: Enrichments | undefined; protected _keys: Keys | undefined; protected _logs: Logs | undefined; protected _networkTokens: NetworkTokens | undefined; protected _permissions: Permissions | undefined; protected _proxies: Proxies | undefined; protected _reactors: Reactors | undefined; protected _roles: Roles | undefined; protected _sessions: Sessions | undefined; protected _tokenIntents: TokenIntents | undefined; protected _webhooks: Webhooks | undefined; protected _accountUpdater: AccountUpdater | undefined; protected _agentic: Agentic | undefined; protected _tenants: Tenants | undefined; protected _threeds: Threeds | undefined; constructor(_options?: BasisTheoryClient.Options); get applications(): Applications; get applicationKeys(): ApplicationKeys; get applicationTemplates(): ApplicationTemplates; get applePay(): ApplePay; get googlePay(): GooglePay; get documents(): Documents; get tokens(): Tokens; get enrichments(): Enrichments; get keys(): Keys; get logs(): Logs; get networkTokens(): NetworkTokens; get permissions(): Permissions; get proxies(): Proxies; get reactors(): Reactors; get roles(): Roles; get sessions(): Sessions; get tokenIntents(): TokenIntents; get webhooks(): Webhooks; get accountUpdater(): AccountUpdater; get agentic(): Agentic; get tenants(): Tenants; get threeds(): Threeds; }