import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateAuthenticatorConnectionRequest = { authenticatorId: string; createAuthenticatorConnection: components.CreateAuthenticatorConnection; }; /** @internal */ export declare const CreateAuthenticatorConnectionRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateAuthenticatorConnectionRequest$Outbound = { authenticator_id: string; CreateAuthenticatorConnection: components.CreateAuthenticatorConnection$Outbound; }; /** @internal */ export declare const CreateAuthenticatorConnectionRequest$outboundSchema: z.ZodType; export declare function createAuthenticatorConnectionRequestToJSON(createAuthenticatorConnectionRequest: CreateAuthenticatorConnectionRequest): string; export declare function createAuthenticatorConnectionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createauthenticatorconnection.d.ts.map