export = Time;
declare class Time {
    constructor($: any);
    /** @type {string | null} */
    hours: string | null;
    /** @type {string | null} */
    date: string | null;
}
