import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class EndToEndEncryption extends ClientSDK { /** * Allows for testing a JWE token to ensure it's acceptable by Moov. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/ping.read` scope. */ testEncryptedToken(request: components.E2EEToken, options?: RequestOptions): Promise; /** * Generates a public key used to create a JWE token for passing secure authentication data through non-PCI compliant intermediaries. */ generateKey(request: operations.GenerateEndToEndKeyRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=endtoendencryption.d.ts.map