import * as React from 'react';
import type { TableProps } from './types';
export default class Table extends React.Component<TableProps> {
    static defaultProps: {
        columns: any[];
        data: any[][];
        loadingMessage: string;
    };
    render(): React.JSX.Element;
}
