export default class TableDemo extends React.Component<any, any, any> {
    constructor(props: any);
    constructor(props: any, context: any);
    state: {
        condensed: boolean;
        bordered: boolean;
        hover: boolean;
        loading: boolean;
        noData: boolean;
        useCustomLoadingText: boolean;
        loadingText: string;
        useCustomNoDataText: boolean;
        noDataText: string;
        sortKey: {
            key: string;
            desc: boolean;
        };
        pageSize: null;
        paginationPosition: string;
    };
    toggle: (state: any) => void;
    onChangeLoadingText: (r: any) => void;
    onChangeNoDataText: (r: any) => void;
    render(): React.JSX.Element;
}
import React from 'react';
//# sourceMappingURL=table.d.ts.map