import { default as React, ComponentPropsWithoutRef } from 'react'; import { HeaderMasthead } from './HeaderMasthead'; import { HeaderActionGroup } from './HeaderActionGroup'; import { HeaderSideNavTrigger } from './HeaderSideNavTrigger'; import { HeaderNavigation } from './HeaderNavigation'; import { HeaderAction } from './HeaderAction'; export interface HeaderProps extends ComponentPropsWithoutRef<'header'> { /** * Provide content for the Header */ children: React.ReactNode; } export declare function InternalHeader({ children, className, ...props }: HeaderProps): import("react/jsx-runtime").JSX.Element; type HeaderType = typeof InternalHeader & { displayName: string; Navigation: typeof HeaderNavigation; ActionGroup: typeof HeaderActionGroup; Action: typeof HeaderAction; Masthead: typeof HeaderMasthead; SideNavTrigger: typeof HeaderSideNavTrigger; }; export declare const Header: HeaderType; export {};