import { TableProps } from 'antd';
import { FC } from 'react';
import { TABLE } from '../../Types';
export interface ITable {
    ctype: typeof TABLE;
    props: TableProps<any>;
}
declare const Table: FC<ITable>;
export default Table;
