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