import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetSigningKeyRequest = { /** * ID of the signing key */ keyId: string; }; export type GetSigningKeyResponse = { /** * HTTP response content type for this operation */ contentType: string; /** * HTTP response status code for this operation */ statusCode: number; /** * Raw HTTP response; suitable for custom response parsing */ rawResponse: Response; /** * Success */ signingKey?: components.SigningKey | undefined; /** * Error */ error?: components.ErrorT | undefined; }; /** @internal */ export declare const GetSigningKeyRequest$inboundSchema: z.ZodType; /** @internal */ export type GetSigningKeyRequest$Outbound = { keyId: string; }; /** @internal */ export declare const GetSigningKeyRequest$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 GetSigningKeyRequest$ { /** @deprecated use `GetSigningKeyRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetSigningKeyRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetSigningKeyRequest$Outbound` instead. */ type Outbound = GetSigningKeyRequest$Outbound; } export declare function getSigningKeyRequestToJSON(getSigningKeyRequest: GetSigningKeyRequest): string; export declare function getSigningKeyRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetSigningKeyResponse$inboundSchema: z.ZodType; /** @internal */ export type GetSigningKeyResponse$Outbound = { ContentType: string; StatusCode: number; RawResponse: never; "signing-key"?: components.SigningKey$Outbound | undefined; error?: components.ErrorT$Outbound | undefined; }; /** @internal */ export declare const GetSigningKeyResponse$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 GetSigningKeyResponse$ { /** @deprecated use `GetSigningKeyResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetSigningKeyResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetSigningKeyResponse$Outbound` instead. */ type Outbound = GetSigningKeyResponse$Outbound; } export declare function getSigningKeyResponseToJSON(getSigningKeyResponse: GetSigningKeyResponse): string; export declare function getSigningKeyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getsigningkey.d.ts.map