import React from 'react';
import { ReportFormatType, ReportNameType } from '../../AdaptableState/ExportState';
export interface ReportFormatSelectorProps {
    viewType: 'Toolbar' | 'ToolPanel' | 'StatusBar' | 'SettingsPanel';
    size?: 'small' | 'normal';
    reportName: ReportNameType;
    reportFormat: ReportFormatType;
    onReportFormatSelected: (reportFormat: ReportFormatType) => void;
}
export declare const ReportFormatSelector: React.FunctionComponent<ReportFormatSelectorProps>;
