import type { ReactNode } from 'react'; import type { CommonProps, Href, NavigationProps, WithRequired } from '../types.js'; export interface AppHeaderTitleLinkProps extends WithRequired { } export interface AppHeaderProps extends CommonProps { /** The title displayed in the header, usually the application name. Rendered as an `

` element. */ title: string; /** The props of the link that is rendered around the header title. */ titleLink: Href | AppHeaderTitleLinkProps; /** The tools to render at the end of the header. */ tools?: ReactNode; UNSTABLE_navButton?: ReactNode; UNSTABLE_postTitle?: ReactNode; UNSTABLE_search?: ReactNode; } /** * Displays a basic application header. * * See [app header usage guidelines](https://ui.cimpress.io/components/app-header/). */ declare const _AppHeader: (props: AppHeaderProps & import("react").RefAttributes) => import("react").JSX.Element | null; export { _AppHeader as AppHeader }; //# sourceMappingURL=app-header.d.ts.map