import * as React from 'react';
import { Report } from '../../../AdaptableState/ExportState';
import { AdaptableApi } from '../../../types';
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, api: AdaptableApi) => React.ReactNode;
export declare const ReportRowsWizardSection: (props: ReportRowsWizardSectionProps) => React.JSX.Element;
