import React, { ReactNode } from 'react'; /** * Status: *finished* * Category: Table with expandable rows */ export interface Props { className?: string; children: ReactNode; rest?: any; } export interface TableWithDropDownElements { THead: typeof THead; TBody: typeof TBody; Tr: typeof Tr; Td: typeof Td; Th: typeof Th; TrExpandable: typeof TrExpandable; } declare const TableWithDropDown: React.FC, HTMLTableElement>> & TableWithDropDownElements; export declare const THead: React.FC, HTMLTableSectionElement>>; export declare const TBody: React.FC, HTMLTableSectionElement>>; export declare const Tr: React.FC, HTMLTableRowElement>>; interface PropsExpandableContent { expandableContent?: ReactNode; initialExpanded?: boolean; } export declare const TrExpandable: React.FC, HTMLTableRowElement>>; export declare const Td: React.FC, HTMLTableDataCellElement>>; export declare const Th: React.FC, HTMLTableHeaderCellElement>>; export default TableWithDropDown;