import * as React from 'react';
import { AdaptableApi } from '../../../Api/AdaptableApi';
import { Report } from '../../../AdaptableState/ExportState';
export type ReportNameWizardSectionProps = {
    onChange: (data: Report) => void;
};
export declare const renderReportNameSummary: (report: Report) => React.JSX.Element;
export declare const isValidReportName: (report: Report, api: AdaptableApi) => true | "Report name cannot be empty" | "A Report already exists with that name";
export declare const ReportNameWizardSection: (props: ReportNameWizardSectionProps) => React.JSX.Element;
