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