import { type FC } from "react"; import type { TicketWithStatus as Ticket } from "../types/tickets"; import { Locations } from ".."; type Props = Pick & { date: Ticket["timestamp"]; href?: Ticket["href"]; location: Locations; }; export declare const TicketWithStatus: FC; export {};