import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { GuardrailConfig, GuardrailConfig$Outbound } from "./guardrailconfig.js"; export type UpdateGuardrailsRequest = { /** * List of guardrails to configure */ guardrails: Array; /** * Target team for this policy. Omit or pass null to set the org-wide policy that applies to every team (org admin only). Non-admin callers may only target their own team. */ teamId?: string | null | undefined; }; /** @internal */ export declare const UpdateGuardrailsRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateGuardrailsRequest$Outbound = { guardrails: Array; team_id?: string | null | undefined; }; /** @internal */ export declare const UpdateGuardrailsRequest$outboundSchema: z.ZodType; export declare function updateGuardrailsRequestToJSON(updateGuardrailsRequest: UpdateGuardrailsRequest): string; export declare function updateGuardrailsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateguardrailsrequest.d.ts.map