import { DurationTime } from "../interfaces/duration-time"; import { Value } from "./value"; export declare class DurationValue extends Value { type: string; private value; getValue(): DurationTime; setValue(value: string): this; toString(): string; }