/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { AnchorHTMLAttributes, ComponentType, HTMLAttributes, ReactNode } from 'react';
import type { IconProps } from '../Icon';
import type { LogoBrand } from '../Logo';
import type { LogoBrandConfig } from '../Logo/Logo';
export type PageHeaderProps = {
    /** The name of the application. */
    brandName?: string;
    /**
     * A shorter form of the name of the application.
     * Provide this only together with a `brandName`.
     */
    brandNameShort?: string;
    /** The accessible name of the logo. */
    logoAccessibleName?: string;
    /** The name of the brand for which to display the logo. */
    logoBrand?: LogoBrand | LogoBrandConfig;
    /** The url for the link on the logo. */
    logoLink?: string;
    /** The React component to use for the logo link. */
    logoLinkComponent?: ComponentType<AnchorHTMLAttributes<HTMLAnchorElement>>;
    /** The accessible text for the link on the logo. */
    logoLinkTitle?: string;
    /** An icon to display instead of the default icon. */
    menuButtonIcon?: IconProps['svg'];
    /** The visible text for the menu button. */
    menuButtonText?: string;
    /** The text for screen readers when the button hides the menu. */
    menuButtonTextForHide?: string;
    /** The text for screen readers when the button shows the menu. */
    menuButtonTextForShow?: string;
    /** A slot for the menu items. Use PageHeader.MenuLink here. */
    menuItems?: ReactNode;
    /**
     * The accessible label for the navigation section.
     * @default Hoofdmenu
     */
    navigationLabel?: string;
    /** Whether the menu button is visible on wide screens.  */
    noMenuButtonOnWideWindow?: boolean;
} & HTMLAttributes<HTMLElement>;
/**
 * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-page-header--docs Page Header docs at Amsterdam Design System}
 */
export declare const PageHeader: import("react").ForwardRefExoticComponent<{
    /** The name of the application. */
    brandName?: string;
    /**
     * A shorter form of the name of the application.
     * Provide this only together with a `brandName`.
     */
    brandNameShort?: string;
    /** The accessible name of the logo. */
    logoAccessibleName?: string;
    /** The name of the brand for which to display the logo. */
    logoBrand?: LogoBrand | LogoBrandConfig;
    /** The url for the link on the logo. */
    logoLink?: string;
    /** The React component to use for the logo link. */
    logoLinkComponent?: ComponentType<AnchorHTMLAttributes<HTMLAnchorElement>>;
    /** The accessible text for the link on the logo. */
    logoLinkTitle?: string;
    /** An icon to display instead of the default icon. */
    menuButtonIcon?: IconProps["svg"];
    /** The visible text for the menu button. */
    menuButtonText?: string;
    /** The text for screen readers when the button hides the menu. */
    menuButtonTextForHide?: string;
    /** The text for screen readers when the button shows the menu. */
    menuButtonTextForShow?: string;
    /** A slot for the menu items. Use PageHeader.MenuLink here. */
    menuItems?: ReactNode;
    /**
     * The accessible label for the navigation section.
     * @default Hoofdmenu
     */
    navigationLabel?: string;
    /** Whether the menu button is visible on wide screens.  */
    noMenuButtonOnWideWindow?: boolean;
} & HTMLAttributes<HTMLElement> & import("react").RefAttributes<HTMLElement>> & {
    GridCellNarrowWindowOnly: import("react").ForwardRefExoticComponent<import("..").GridCellProps & import("react").RefAttributes<HTMLElement>>;
    MenuLink: import("react").ForwardRefExoticComponent<{
        fixed?: boolean;
        icon?: IconProps["svg"];
    } & AnchorHTMLAttributes<HTMLAnchorElement> & {
        children?: ReactNode | undefined;
    } & import("react").RefAttributes<HTMLAnchorElement>>;
};
