import type { HTMLAttributes } from 'react'; import type { DataTestId } from '../../core/types/data-props.js'; import type { StylingProps } from '../../core/types/styling-props.js'; import type { WithChildren } from '../../core/types/with-children.js'; /** @public */ export interface HeaderProps extends WithChildren, Omit, keyof StylingProps>, StylingProps, DataTestId { } /** * The `Header` component is used inside the `Page` component for displaying content at the very top of the page. * @public */ export declare const Header: { (props: HeaderProps): import("react/jsx-runtime").JSX.Element; displayName: string; };