import { type ReactElement } from 'react'; import type { DataTestId, StylingProps, WithChildren } from '@dynatrace/strato-components/core'; export type EmptyStateProps = WithChildren & StylingProps & DataTestId; export declare function _isEmptyState(child: ReactElement | null): child is ReturnType; /** * EmptyState component used to indicate the empty state to the end user. */ export declare const DataTableV2EmptyState: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => React.ReactElement | null;