import * as React from 'react';
import { Layout } from '../../../../../types';
export { getRowGroupBehaviorDescription, getRowGroupBehaviorLabel, getRowGroupDisplayTypeDescription, getRowGroupDisplayTypeLabel, } from '../../../../Strategy/Utilities/Layout/rowGroupSummaryHelpers';
export declare const RowGroupingSectionSummary: React.FunctionComponent<{
    layout?: Layout;
}>;
interface RowGroupingSectionProps {
    onChange: (data: Layout) => void;
    layoutWizardMode?: 'create' | 'edit';
}
export declare const RowGroupBehaviorSection: (props: {
    layout: Layout;
    onChange: (data: Layout) => void;
}) => React.JSX.Element;
export declare const RowGroupingSection: React.FunctionComponent<RowGroupingSectionProps>;
