/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type HTMLProps } from 'react';
type TableProps = HTMLProps<HTMLTableElement> & {
    isFixedSize?: boolean;
    isLoading?: boolean;
    hasDataRow: boolean;
    testId?: string;
};
export declare const Table: import('react').ForwardRefExoticComponent<Omit<TableProps, 'ref'> & import('react').RefAttributes<HTMLTableElement>>;
export {};
