import { RRule } from './rrule'; import { RRuleSet } from './rruleset'; import { Options } from './types'; export interface RRuleStrOptions { dtstart: Date | null; cache: boolean; unfold: boolean; forceset: boolean; compatible: boolean; tzid: string | null; } export declare function parseInput(s: string, options: Partial): { dtstart: Date; tzid: string; rrulevals: Partial[]; rdatevals: Date[]; exrulevals: Partial[]; exdatevals: Date[]; }; export declare function rrulestr(s: string, options?: Partial): RRule | RRuleSet; //# sourceMappingURL=rrulestr.d.ts.map