import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NoticeReference } from "./noticereference.js"; export type UserNotice = { explicitText?: string | undefined; noticeReference?: NoticeReference | undefined; }; /** @internal */ export declare const UserNotice$inboundSchema: z.ZodType; export declare function userNoticeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=usernotice.d.ts.map