export declare const EventCountdownProgressBar: ({ eventLabel, startDate, endDate, timeRemaining, status, }: {
    eventLabel: string;
    startDate: Date;
    endDate: Date | null;
    timeRemaining: string;
    status: "idle" | "pending" | "complete";
}) => import("react/jsx-runtime").JSX.Element;
