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