import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TicketStatus } from "./ticketstatus.js"; export type WebhookDataTicketUpdated = { accountID: string; ticketID: string; foreignID?: string | undefined; status: TicketStatus; }; /** @internal */ export declare const WebhookDataTicketUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataTicketUpdated$Outbound = { accountID: string; ticketID: string; foreignID?: string | undefined; status: string; }; /** @internal */ export declare const WebhookDataTicketUpdated$outboundSchema: z.ZodType; export declare function webhookDataTicketUpdatedToJSON(webhookDataTicketUpdated: WebhookDataTicketUpdated): string; export declare function webhookDataTicketUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdataticketupdated.d.ts.map