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