import { DynamicValue, Listener, Unsubscriber } from "./DynamicValue"; /** * A [[DynamicValue]] that contains the Unix time * * @example * ```javascript * new DateValue() * ``` */ export declare class DateValue implements DynamicValue { __variant__: string; name: string | void; constructor(name?: string); onValue(listener: Listener): Unsubscriber; getValue(): Promise; static fromJSON(json: { name?: string; }): DateValue; }