import { type FC } from "react"; import { Colors } from "../types/parametrization"; type Props = { content: string; status?: string; reason?: string; colors?: Colors; createdAt?: string; protocol?: string; }; export declare const TicketWithInfo: FC; export {};