import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BaseGetAuthenticator, BaseGetAuthenticator$Outbound } from "./basegetauthenticator.js"; import { Pagination, Pagination$Outbound } from "./pagination.js"; export type AuthenticatorList = { pagination: Pagination; authenticators: Array; }; /** @internal */ export declare const AuthenticatorList$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorList$Outbound = { pagination: Pagination$Outbound; authenticators: Array; }; /** @internal */ export declare const AuthenticatorList$outboundSchema: z.ZodType; export declare function authenticatorListToJSON(authenticatorList: AuthenticatorList): string; export declare function authenticatorListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatorlist.d.ts.map