import React from 'react'; import styles from './TableExpandedList.module.scss'; export interface TableExpandedListProps { /** Expanded table content title. */ title: string; /** Selected keys from the data. */ selectProps: { key: string; accessor: string; }[]; /** Data rendered within the list. */ rows: object; } export declare const TableExpandedList: React.FC; export default TableExpandedList; export { styles }; //# sourceMappingURL=TableExpandedList.d.ts.map