import { ReactNode } from 'react'; import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface NavigationHeaderProps extends NativeElementPropsWithoutKeyAndRef<'header'> { /** * Custom content to render inside the header, typically an icon or logo. */ children?: ReactNode; /** * The title text displayed in the header. */ title: string; /** * Callback function invoked when the brand area (logo and title) is clicked. */ onBrandClick?: () => void; } declare const NavigationHeader: import("react").ForwardRefExoticComponent>; export default NavigationHeader;