import { HeaderItem } from '../../../../domains/shared/header'; /** * Props for {@link DashboardHeaderTitle}. */ export interface DashboardHeaderTitleProps { /** The dashboard title text. */ title: string; } /** * The dashboard title, rendered as the content of the built-in title header item. */ export declare const DashboardHeaderTitle: ({ title }: DashboardHeaderTitleProps) => import("react/jsx-runtime").JSX.Element; /** * Builds the built-in title header item. * * The title can be targeted by `before`/`after`. It uses the internal `fill: 'truncate'` so it * takes its natural content width on the leading side and is the only item that shrinks/ellipsizes * under pressure (action buttons keep their size); the center spacer absorbs the free space. */ export declare const createDashboardTitleItem: (title: string) => HeaderItem;