import { type JSX } from 'react'; import type { DataTableLoadingStateProps } from './loading-state-types.js'; import type { TableOptions } from '../../hooks/useTable/types.js'; /** Progress circle height breakpoint (px). */ export declare const PROGRESS_CIRCLE_HEIGHT_BREAKPOINT = 120; /** * Configuration hook for the DataTable LoadingState feature. * @internal */ export declare function useLoadingState(props: DataTableLoadingStateProps, options: TableOptions): void; /** * Small wrapper that makes sure to only render the defined actions when the menu * is open. * @internal */ export declare function LoadingState(props: Readonly<{ headerHeight: number; }>): JSX.Element;