import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type DeleteGuardrailResponse = { /** * Confirmation that the guardrail was deleted */ deleted: true; }; /** @internal */ export declare const DeleteGuardrailResponse$inboundSchema: z.ZodType; export declare function deleteGuardrailResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteguardrailresponse.d.ts.map