import React from 'react'; interface NoDataCellProps { totalColumnsCount: number; hasFooter: boolean; loading?: boolean; loadingText?: string; empty?: React.ReactNode; tableRef: React.RefObject; containerRef: React.RefObject; } export declare function NoDataCell({ totalColumnsCount, hasFooter, loading, loadingText, empty, tableRef, containerRef }: NoDataCellProps): JSX.Element; export {};