import { PropertyImpl } from "../interfaces/impl"; import { Property } from "./property"; import { DurationValue } from "../values/duration"; export declare class Duration extends Property implements PropertyImpl { type: string; value: DurationValue; setValue(value: string): this; toString(): string; }