import { type JSX } from 'react'; import { DataTableEmptyState } from './DataTableEmptyState.js'; /** * Renders state indicators for the `DataTable`, showing either a loading state * or an empty state when there is no data to display. */ export declare const DataTableStatePlaceholder: (props: { isColumnsEmpty: boolean; isDataEmpty: boolean; allColumnsHidden: boolean; emptyStateSlot: ReturnType; }) => JSX.Element | null;