import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookDataTicketCreated = { accountID: string; ticketID: string; foreignID?: string | undefined; }; /** @internal */ export declare const WebhookDataTicketCreated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataTicketCreated$Outbound = { accountID: string; ticketID: string; foreignID?: string | undefined; }; /** @internal */ export declare const WebhookDataTicketCreated$outboundSchema: z.ZodType; export declare function webhookDataTicketCreatedToJSON(webhookDataTicketCreated: WebhookDataTicketCreated): string; export declare function webhookDataTicketCreatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdataticketcreated.d.ts.map