import * as React from 'react';
import { Report } from '../../../AdaptableState/ExportState';
export type ReportRowsWizardSectionProps = {
    onChange: (data: Report) => void;
};
export declare const isValidReportRowsQuery: (report: Report) => true | "Rows query cannot be empty";
export declare const renderReportRowsSummary: (report: Report) => React.JSX.Element;
export declare const ReportRowsWizardSection: (props: ReportRowsWizardSectionProps) => React.JSX.Element;
