import React, { ReactNode } from 'react'; import { ITableExpandableContent, ITableExpandableRow, ITableRow } from './types'; export declare const isRow: (child: ReactNode, TableRow: React.FC) => boolean; export declare const isExpandableRow: (child: ReactNode, TableExpandableRow: React.FC) => boolean; export declare const isExpandableContent: (child: ReactNode, TableExpandableContent: React.FC) => boolean; export declare const isCustomComponent: (child: ReactNode) => boolean;