import * as React from 'react'; export interface ITableFeature { [key: string]: string[]; } export interface ITableProps { feature: ITableFeature; header?: string[]; highlightedKeys?: number[]; onClickRow?: (key: string, value: string, index?: number, event?: React.MouseEvent) => void; } export declare function objectToITableFeature(inObject: { [key: string]: any; }): ITableFeature; export declare const Table: React.FC;