/** * * `OPEN` - OPEN * * `CLOSED` - CLOSED * * `IN_PROGRESS` - IN_PROGRESS * * `ON_HOLD` - ON_HOLD */ export declare const TicketStatusEnum: { readonly Open: "OPEN"; readonly Closed: "CLOSED"; readonly InProgress: "IN_PROGRESS"; readonly OnHold: "ON_HOLD"; }; export type TicketStatusEnum = (typeof TicketStatusEnum)[keyof typeof TicketStatusEnum];