import React from 'react'; import cx from 'classnames'; import styles from './TableRowExpanded.module.scss'; export interface TableRowExpandedProps extends React.HTMLProps { /** Child of `Table.RowExpanded` which can be any element. */ children: React.ReactNode; /** If true, expanded content will appear. */ isExpanded?: boolean; /** Dictate how many columns the cell will span. */ colSpan?: number; /** Add a CSS class for cell.*/ cellWrapperClassName?: Parameters[0]; } export declare const TableRowExpanded: React.FC; export default TableRowExpanded; export { styles }; //# sourceMappingURL=TableRowExpanded.d.ts.map