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