import { FC } from "react"; import { Message, Role } from "../types/messages"; import { Colors } from "../types/parametrization"; import { Locations } from ".."; type Props = { message: Message; role?: Role; colors?: Colors; location: Locations; status?: string; reason?: string; }; export declare const Ticket: FC; export {};