import './index.css'; interface MeetingTimeProps { currentTime: string; total: number; status: MeetingStatus; } export declare enum MeetingStatus { NORMAL = "normal", SOON_TO_END = "soon2end", OVERTIME = "overtime" } export declare const MeetingTime: (props: MeetingTimeProps) => import("react").JSX.Element; export {};