import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TicketContact, TicketContact$Outbound } from "./ticketcontact.js"; /** * Request to create a new support ticket. */ export type CreateTicket = { title: string; body: string; author?: string | undefined; contact: TicketContact; foreignID?: string | undefined; }; /** @internal */ export declare const CreateTicket$inboundSchema: z.ZodType; /** @internal */ export type CreateTicket$Outbound = { title: string; body: string; author?: string | undefined; contact: TicketContact$Outbound; foreignID?: string | undefined; }; /** @internal */ export declare const CreateTicket$outboundSchema: z.ZodType; export declare function createTicketToJSON(createTicket: CreateTicket): string; export declare function createTicketFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createticket.d.ts.map