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