import { Value } from "./value"; export declare class TimeValue extends Value { type: string; private value; private tz; getValue(): Date; setValue(value: string): this; convertFromTZ(tz: string): this; toString(): string; }