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 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) => import("react").ReactElement | null;