/** * @jsxRuntime classic * @jsx jsx */ import { type ReactNode } from 'react'; type CustomTitleProps = { /** * The custom title value to display. */ children: ReactNode; /** * A unique string that appears as data attribute `data-testid` in the rendered code, serving as a hook for automated tests. */ testId?: string; }; /** * __Custom title__ * * A custom site title to be displayed in the top navigation, to the right of the logo. * It is hidden on smaller viewports. */ export declare const CustomTitle: React.ForwardRefExoticComponent & React.RefAttributes>; export {};