import { FC } from 'react'; type ISort = Record; export interface TableProps { rows: any[]; columns: any[]; enableAdd?: boolean; selectable?: boolean; buttonText?: string; rowId?: string; [key: string]: any; onSort?(param: ISort): void; onCheck?(param: any[]): void; onAddClick?(): void; loading?: boolean; checkAllText?: string; checkAllWidth?: number; } export declare const Table: FC; export {};