import * as React from 'react';
import { IPushPullSchedule, IPushPullDomain, Report } from '../../../../types';
interface ScheduleSettingsIpushPullProps {
    iPushPull: IPushPullSchedule;
    allReports: Report[];
    allFolders: IPushPullDomain[];
    availablePages: string[];
    onChange: (iPushPull: IPushPullSchedule) => void;
}
export declare const ScheduleSettingsIPushPull: React.FunctionComponent<ScheduleSettingsIpushPullProps>;
export {};
