import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A response to a list signing keys method */ export type ListSigningKeysResponse = { /** * The returned collection of all currently valid signing keys */ keys?: Array<{ [k: string]: any; } | null> | undefined; /** * Page token used for pagination; Supplying a page token returns the next page of results */ nextPageToken?: string | undefined; }; /** @internal */ export declare const ListSigningKeysResponse$inboundSchema: z.ZodType; /** @internal */ export type ListSigningKeysResponse$Outbound = { keys?: Array<{ [k: string]: any; } | null> | undefined; next_page_token?: string | undefined; }; /** @internal */ export declare const ListSigningKeysResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ListSigningKeysResponse$ { /** @deprecated use `ListSigningKeysResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListSigningKeysResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListSigningKeysResponse$Outbound` instead. */ type Outbound = ListSigningKeysResponse$Outbound; } export declare function listSigningKeysResponseToJSON(listSigningKeysResponse: ListSigningKeysResponse): string; export declare function listSigningKeysResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listsigningkeysresponse.d.ts.map