import { DashboardHeaderProps } from '../../../../domains/dashboarding/types'; /** * Dashboard header. * * Pure renderer: it receives the full list of built-in header items (title and center spacer * included), resolves them against the user {@link DashboardHeaderConfig} (ordering then * `onBeforeRender`), and renders the result. Auto-positioned items land after the center spacer. */ export declare const DashboardHeader: ({ items, config }: DashboardHeaderProps) => import("react/jsx-runtime").JSX.Element;