import * as React from 'react';
import { ExportDestinationType } from '../../../AdaptableOptions/ExportOptions';
import { ReportFormatType, ReportNameType, ReportSchedule } from '../../../AdaptableState/ExportState';
interface ScheduledReportSettingsProps {
    reportSchedule: ReportSchedule;
    onChange: (reportSchedule: ReportSchedule) => void;
    allFormats: ReportFormatType[];
    allDestinations: ExportDestinationType[];
    /** When set, the user picks which report this schedule exports (Export popup → New Schedule). */
    allReportNames?: ReportNameType[];
    /** When set, the report is fixed (schedule created from a specific report). */
    fixedReportName?: ReportNameType;
}
export declare const ScheduledReportSettings: React.FunctionComponent<ScheduledReportSettingsProps>;
export {};
