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 ListAuthenticatorsRequest = { /** * An opaque cursor for pagination */ cursor?: string | null | undefined; /** * The number of items per page (must be greater than 0 and less than or equal to 100) */ pageSize?: number | undefined; }; export type ListAuthenticatorsResponse = { result: components.AuthenticatorList; }; /** @internal */ export declare const ListAuthenticatorsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListAuthenticatorsRequest$Outbound = { cursor?: string | null | undefined; page_size: number; }; /** @internal */ export declare const ListAuthenticatorsRequest$outboundSchema: z.ZodType; export declare function listAuthenticatorsRequestToJSON(listAuthenticatorsRequest: ListAuthenticatorsRequest): string; export declare function listAuthenticatorsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListAuthenticatorsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListAuthenticatorsResponse$Outbound = { Result: components.AuthenticatorList$Outbound; }; /** @internal */ export declare const ListAuthenticatorsResponse$outboundSchema: z.ZodType; export declare function listAuthenticatorsResponseToJSON(listAuthenticatorsResponse: ListAuthenticatorsResponse): string; export declare function listAuthenticatorsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listauthenticators.d.ts.map