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 EmptyStateTitleProps extends WithChildren, StylingProps, DataTestId { /** * The polymorphed HTML tag that determines the semantic level of the title. * Default value depends on the empty state size prop. * @defaultValue h1, h3 or h6 */ as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; } /** * The title slot of the EmptyState component. * @public */ export declare const Title: (props: EmptyStateTitleProps & import("react").RefAttributes) => import("react").ReactElement | null;