import { type ReactNode } from 'react'; import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; /** * Accepted properties for the TitleBar Navigation * @public */ export interface TitleBarNavigationProps extends StylingProps, DataTestId { /** Elements to be displayed in the TitleBar Navigation slot. */ children: ReactNode; } /** * TitleBar Navigation component * @public */ export declare const Navigation: (props: TitleBarNavigationProps & import("react").RefAttributes) => import("react").ReactElement | null;