import type { Content, TicketHistory, TicketInfo } from "..";
type TicketData = {
    info: TicketInfo;
    content: Content;
    history: TicketHistory[];
};
export type { TicketData };
