import { type ReactElement } from 'react'; import type { DataTestId } from '../../../core/types/data-props.js'; import type { StylingProps } from '../../../core/types/styling-props.js'; import type { WithChildren } from '../../../core/types/with-children.js'; export declare function _isEmptyState(child: ReactElement | null): child is ReturnType; /** * EmptyState component used to indicate the empty state to the end user. * @public */ export declare const DataTableEmptyState: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => import("react").ReactElement | null;