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