import { type ReactNode } from 'react'; import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * 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) => React.ReactElement | null;