import * as React from 'react';
import type { TableBuilderProps } from './types';
import type { SyntheticEvent } from 'react';
export default class TableBuilder<T> extends React.Component<TableBuilderProps<T>, {
    isFocusVisible: boolean;
}> {
    static defaultProps: {
        data: any[];
        loadingMessage: string;
    };
    state: {
        isFocusVisible: boolean;
    };
    handleFocus: (event: SyntheticEvent) => void;
    handleBlur: (event: SyntheticEvent) => void;
    render(): React.JSX.Element;
}
