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 EmptyStateFooterProps extends WithChildren, StylingProps, DataTestId { } /** * The footer slot for the EmptyState component. * @public */ export declare const Footer: (props: EmptyStateFooterProps & import("react").RefAttributes) => import("react").ReactElement | null;