import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteSkillRequest = { skillId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const DeleteSkillRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteSkillRequest$Outbound = { skill_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const DeleteSkillRequest$outboundSchema: z.ZodType; export declare function deleteSkillRequestToJSON(deleteSkillRequest: DeleteSkillRequest): string; export declare function deleteSkillRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteskill.d.ts.map