import { type FC, type ReactNode } from 'react'; interface TableInnerWindowProps { isEmpty: boolean; showSettings: boolean; hasConsumerSettingsMenu: boolean; ariaLabel?: string; children?: ReactNode; } export declare const TableInnerWindow: FC; export {};