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