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