import { PropertyImpl } from "../interfaces/impl"; import { Property } from "./property"; import { DateTimeValue } from "../values/date-time"; export declare class Created extends Property implements PropertyImpl { type: string; value: DateTimeValue; setValue(value: string): this; toString(): string; }