import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TicketMessage = { author: string; body: string; sentOn: Date; }; /** @internal */ export declare const TicketMessage$inboundSchema: z.ZodType; /** @internal */ export type TicketMessage$Outbound = { author: string; body: string; sentOn: string; }; /** @internal */ export declare const TicketMessage$outboundSchema: z.ZodType; export declare function ticketMessageToJSON(ticketMessage: TicketMessage): string; export declare function ticketMessageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ticketmessage.d.ts.map