import { type HTMLAttributes } from 'react';
import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core';
/**
* @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.js").JSX.Element;
displayName: string;
};