import { FunctionComponent } from 'react';
type ExportSettingsPropsType = {
    useSameTab?: boolean;
    useAsynchronousExport?: boolean;
    showPrintNotificationDialog?: boolean;
};
declare const ExportSettings: FunctionComponent<ExportSettingsPropsType>;
export default ExportSettings;
