import { FC } from 'react';
import { TableProps } from 'antd';
interface ICockpitTable<T> extends TableProps<T> {
    rowClassName?: (record: T, index: number) => string;
    activeKeys?: string[] | null;
    rowKey?: string;
    sortPrefixConfig?: {
        [key: string]: any;
    } | null;
    borderColor?: string;
    onChange?: (pagination: any, filters: any, sorter: any, extra: any) => void;
}
declare const CockpitTable: FC<ICockpitTable<any>>;
export default CockpitTable;
