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 ListApiKeyPairsRequest = { /** * A pointer to the page of results to return. */ cursor?: string | null | undefined; /** * The maximum number of items that are returned. */ limit?: number | undefined; }; export type ListApiKeyPairsResponse = { result: components.CollectionAPIKeyPair; }; /** @internal */ export type ListApiKeyPairsRequest$Outbound = { cursor?: string | null | undefined; limit: number; }; /** @internal */ export declare const ListApiKeyPairsRequest$outboundSchema: z.ZodType; export declare function listApiKeyPairsRequestToJSON(listApiKeyPairsRequest: ListApiKeyPairsRequest): string; /** @internal */ export declare const ListApiKeyPairsResponse$inboundSchema: z.ZodType; export declare function listApiKeyPairsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listapikeypairs.d.ts.map