import React from 'react'; import styles from './TableExpandedGroup.module.scss'; export interface TableExpandedGroupProps { /** Child of `Table.RowExpanded` which can be any element. */ children: React.ReactNode; /** Dictate how many columns to display for the expanded group. */ columns: 1 | 2; } export declare const TableExpandedGroup: React.FC; export default TableExpandedGroup; export { styles }; //# sourceMappingURL=TableExpandedGroup.d.ts.map