import { FC, HTMLAttributes, PropsWithChildren } from 'react';
import { DataGridScope } from '../../types';
export interface DataGridRowGroupProps extends HTMLAttributes {
/**
* Optional logical group for grid cells.
* Allows the DataGrid to treat cells as part of the same page or section.
*/
scope?: DataGridScope;
}
/**
* DataGridRowGroup represents a logical grouping of rows within a DataGrid.
*/
export declare const DataGridRowGroup: FC>;