import { type ReactNode, type ReactElement } from 'react'; import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface EmptyStateVisualProps extends WithChildren, StylingProps, DataTestId { } /** * Typeguard function that will check if a ReactNode is a EmptyState.Visual * @internal */ export declare function isEmptyStateVisual(child: ReactNode): child is ReactElement; /** * Container for the Visual slot of the EmptyState component. * @public */ export declare const Visual: (props: EmptyStateVisualProps & import("react").RefAttributes) => React.ReactElement | null;