import React from 'react';
import { ModalProps } from '../../modal';
import { ColumnProps } from '../../table';
interface IProps extends ModalProps {
    data?: Record<string, unknown>[];
    type: 'line' | 'pie' | 'bar' | null;
    columns?: (ColumnProps<any> & {
        etype: string;
    })[];
    selectInfo?: {
        start: {
            i: number;
            j: number;
        };
        end: {
            i: number;
            j: number;
        };
    };
    rowKey?: string;
    deepDataSource?: Record<string, unknown>[];
}
/** i 是行  j 是列 */
declare const TableChartsModal: (props: IProps) => React.JSX.Element;
export default TableChartsModal;
