import { Schedule } from '../models';
import { MockFunction } from '../services/Mocker';
type ScheduleType = 'interval' | 'cron' | 'rrule';
export declare const randomSchedule: MockFunction<Schedule, [{
    type?: ScheduleType;
}?, Partial<Schedule>?]>;
export {};
