import { PropertyImpl } from "../interfaces/impl"; import { Property } from "./property"; import { TextValue } from "../values/text"; import { URIValue } from "../values/uri"; export declare class Description extends Property implements PropertyImpl { type: string; value: TextValue; parameters: { AltRep: URIValue | null; Language: TextValue | null; }; setValue(value: string): this; setParameter(type: string, value: string): this; toString(): string; }