import { BoxBaseProps } from '../base/boxBase'; /** * Props for {@link Header}. * Extends {@link BoxBaseProps} except for `elementClass` and `component`. * * @category Box */ export type HeaderProps = Omit; /** * Semantic layout wrapper for the native `
` element. * * Built on top of {@link BoxBase}, inheriting its layout and styling props. * Defaults to a row layout (`direction="row"`) and applies * the semantic UUI class `"uui-header"`. * * Use for introductory or navigational top-level content. * * @function * @param props - All layout and style props inherited from {@link BoxBase}. * @example *
* *
* * @category Box */ export declare const Header: import('react').ForwardRefExoticComponent>;