import * as React from 'react'; import { ExportDestinationType } from '../../../../AdaptableOptions/ExportOptions'; import { Report, ReportFormatType, ReportSchedule } from '../../../../AdaptableState/ExportState'; interface ReportScheduleProps { report: ReportSchedule; onChange: (reminder: ReportSchedule) => void; allReports: Report[]; allFormats: ReportFormatType[]; allDestinations: ExportDestinationType[]; } export declare const ScheduleSettingsReport: React.FunctionComponent; export {};