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