import { DataTestId } from '../../../core/types/data-props.js'; import { StylingProps } from '../../../core/types/styling-props.js'; import { WithChildren } from '../../../core/types/with-children.js'; /** * @public */ export interface EmptyStateActionsProps extends WithChildren, StylingProps, DataTestId { } /** * The actions slot of the EmptyState component. * @public */ export declare const Actions: (props: EmptyStateActionsProps & import("react").RefAttributes) => import("react").ReactElement | null;