import * as React from 'react';
import { ReportNameType, ReportSchedule } from '../../../AdaptableState/ExportState';
import { AdaptableOnePageWizardProps } from '../../Wizard/Interface/IAdaptableWizard';
export interface ScheduledReportWizardContext {
    reportName: ReportNameType;
    reportSchedule: ReportSchedule;
}
export interface ScheduledReportWizardProps extends AdaptableOnePageWizardProps<ReportSchedule> {
}
export declare const ScheduledReportWizard: React.FunctionComponent<ScheduledReportWizardProps>;
