import { PropertyImpl } from "../interfaces/impl"; import { Property } from "./property"; import { DateValue } from "../values/date"; import { DateTimeValue } from "../values/date-time"; import { TextValue } from "../values/text"; export declare class DateTimeStart extends Property implements PropertyImpl { type: string; value: DateValue | DateTimeValue; parameters: { TZID: TextValue | null; Value: TextValue | null; }; setValue(value: string): this; setParameter(type: string, value: string): this; toString(): string; }