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