import { type FC } from "react"; import type { TicketWithMessage as Ticket } from "../types/tickets"; import { Colors } from "../types/parametrization"; type Props = Pick & { sentBy: Ticket["sentBy"]["userName"]; sentAt: Ticket["timestamp"]; status?: string; reason?: string; colors?: Colors; }; export declare const TicketWithMessage: FC; export {};