import type { FC, ReactNode } from 'react'; import type { TestableProps } from '../../../utils/testId'; import type { TableVirtualized } from '../types'; interface TableInnerProps extends TestableProps { isEmpty: boolean; virtualized?: TableVirtualized; showSettings: boolean; hasConsumerSettingsMenu: boolean; hasConsumerScrollHandler: boolean; ariaLabel?: string; className?: string; children?: ReactNode; } export declare const TableInner: FC; export {};