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 UpdateGuardrailsResponse = { object: "guardrails_settings"; guardrails: Array; /** * Team this policy targets; null for the org-wide policy */ teamId: string | null; /** * Unix timestamp of when the policy was updated */ updatedAt: number; }; /** @internal */ export declare const UpdateGuardrailsResponse$inboundSchema: z.ZodType; /** @internal */ export type UpdateGuardrailsResponse$Outbound = { object: "guardrails_settings"; guardrails: Array; team_id: string | null; updated_at: number; }; /** @internal */ export declare const UpdateGuardrailsResponse$outboundSchema: z.ZodType; export declare function updateGuardrailsResponseToJSON(updateGuardrailsResponse: UpdateGuardrailsResponse): string; export declare function updateGuardrailsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateguardrailsresponse.d.ts.map