import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AcknowledgedSafetyCheck = { id: string; code?: string | undefined; message?: string | undefined; }; /** @internal */ export declare const AcknowledgedSafetyCheck$inboundSchema: z.ZodType; /** @internal */ export type AcknowledgedSafetyCheck$Outbound = { id: string; code?: string | undefined; message?: string | undefined; }; /** @internal */ export declare const AcknowledgedSafetyCheck$outboundSchema: z.ZodType; export declare function acknowledgedSafetyCheckToJSON(acknowledgedSafetyCheck: AcknowledgedSafetyCheck): string; export declare function acknowledgedSafetyCheckFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=acknowledgedsafetycheck.d.ts.map