import React, { FC } from 'react'; import { Row } from 'react-table'; declare type FeTableExpandableProps = { isExpanded: boolean; renderExpandedComponent?: (data: T, index: number) => React.ReactNode; row: Row; }; export declare const FeTableExpandable: FC>; export {};