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 DeleteSigningKeyRequest = { /** * ID of the signing key */ keyId: string; }; export type DeleteSigningKeyResponse = { /** * 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; /** * Error */ error?: components.ErrorT | undefined; }; /** @internal */ export declare const DeleteSigningKeyRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteSigningKeyRequest$Outbound = { keyId: string; }; /** @internal */ export declare const DeleteSigningKeyRequest$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 DeleteSigningKeyRequest$ { /** @deprecated use `DeleteSigningKeyRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeleteSigningKeyRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeleteSigningKeyRequest$Outbound` instead. */ type Outbound = DeleteSigningKeyRequest$Outbound; } export declare function deleteSigningKeyRequestToJSON(deleteSigningKeyRequest: DeleteSigningKeyRequest): string; export declare function deleteSigningKeyRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DeleteSigningKeyResponse$inboundSchema: z.ZodType; /** @internal */ export type DeleteSigningKeyResponse$Outbound = { ContentType: string; StatusCode: number; RawResponse: never; error?: components.ErrorT$Outbound | undefined; }; /** @internal */ export declare const DeleteSigningKeyResponse$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 DeleteSigningKeyResponse$ { /** @deprecated use `DeleteSigningKeyResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeleteSigningKeyResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeleteSigningKeyResponse$Outbound` instead. */ type Outbound = DeleteSigningKeyResponse$Outbound; } export declare function deleteSigningKeyResponseToJSON(deleteSigningKeyResponse: DeleteSigningKeyResponse): string; export declare function deleteSigningKeyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletesigningkey.d.ts.map