UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

16 lines (15 loc) 728 B
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>;