import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteAuthenticatorConnectionRequest = { authenticatorId: string; }; /** @internal */ export declare const DeleteAuthenticatorConnectionRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteAuthenticatorConnectionRequest$Outbound = { authenticator_id: string; }; /** @internal */ export declare const DeleteAuthenticatorConnectionRequest$outboundSchema: z.ZodType; export declare function deleteAuthenticatorConnectionRequestToJSON(deleteAuthenticatorConnectionRequest: DeleteAuthenticatorConnectionRequest): string; export declare function deleteAuthenticatorConnectionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteauthenticatorconnection.d.ts.map