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