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: never[]; loadingMessage: string; }; state: { isFocusVisible: boolean; }; handleFocus: (event: SyntheticEvent) => void; handleBlur: (event: SyntheticEvent) => void; render(): import("react/jsx-runtime").JSX.Element; }