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