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