import { TypeTime } from '../types/type-time'; import { Primitive } from './primitive'; export declare class Time extends Primitive { type: typeof TypeTime; _date: Date | null; constructor(value: string); toDate(): Date | null; toJS(): Date | null; }