import * as React from 'react'; import { Report } from '../../../AdaptableState/ExportState'; export type ReportColumnsWizardSectionProps = { onChange: (data: Report) => void; }; export declare const isValidReportColumnsScope: (report: Report) => true | "Column scope is not defined"; export declare const renderReportColumnsSummary: (report: Report) => React.JSX.Element; export declare const ReportColumnsWizardSection: (props: ReportColumnsWizardSectionProps) => React.JSX.Element;