import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js"; import * as core from "../../../../core/index.js"; import * as BasisTheory from "../../../index.js"; export declare namespace Keys { interface Options extends BaseClientOptions { } interface RequestOptions extends BaseRequestOptions { } } export declare class Keys { protected readonly _options: Keys.Options; constructor(_options?: Keys.Options); /** * @param {Keys.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link BasisTheory.UnauthorizedError} * @throws {@link BasisTheory.ForbiddenError} * @throws {@link BasisTheory.InternalServerError} * * @example * await client.keys.list() */ list(requestOptions?: Keys.RequestOptions): core.HttpResponsePromise; private __list; /** * @param {BasisTheory.ClientEncryptionKeyRequest} request * @param {Keys.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link BasisTheory.BadRequestError} * @throws {@link BasisTheory.UnauthorizedError} * @throws {@link BasisTheory.ForbiddenError} * @throws {@link BasisTheory.UnprocessableEntityError} * @throws {@link BasisTheory.InternalServerError} * * @example * await client.keys.create() */ create(request?: BasisTheory.ClientEncryptionKeyRequest, requestOptions?: Keys.RequestOptions): core.HttpResponsePromise; private __create; /** * @param {string} id * @param {Keys.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link BasisTheory.UnauthorizedError} * @throws {@link BasisTheory.ForbiddenError} * @throws {@link BasisTheory.NotFoundError} * @throws {@link BasisTheory.InternalServerError} * * @example * await client.keys.get("id") */ get(id: string, requestOptions?: Keys.RequestOptions): core.HttpResponsePromise; private __get; /** * @param {string} id * @param {Keys.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link BasisTheory.UnauthorizedError} * @throws {@link BasisTheory.ForbiddenError} * @throws {@link BasisTheory.NotFoundError} * @throws {@link BasisTheory.InternalServerError} * * @example * await client.keys.delete("id") */ delete(id: string, requestOptions?: Keys.RequestOptions): core.HttpResponsePromise; private __delete; protected _getCustomAuthorizationHeaders(): Promise>; }