import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { DataTestId } from '../../core/types/data-props.js'; import { MaskingProps } from '../../core/types/masking-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * Accepted properties for TitleBar * @public */ export interface TitleBarProps extends WithChildren, StylingProps, DataTestId, MaskingProps, BehaviorTrackingProps { /** * Whether a divider is displayed after the TitleBar component. * @defaultValue true */ showDivider?: boolean; } /** * The TitleBar component can be used for a consistent layout for section titles and provides * layout slots for interactive and navigational elements. * @public */ export declare const TitleBar: ((props: TitleBarProps & import("react").RefAttributes) => import("react").ReactElement | null) & { Title: (props: import("./Title.js").TitleBarTitleProps & import("react").RefAttributes) => import("react").ReactElement | null; Subtitle: (props: import("./Subtitle.js").TitleBarSubtitleProps & import("react").RefAttributes) => import("react").ReactElement | null; Suffix: (props: import("./Suffix.js").TitleBarSuffixProps & import("react").RefAttributes) => import("react").ReactElement | null; Navigation: (props: import("./Navigation.js").TitleBarNavigationProps & import("react").RefAttributes) => import("react").ReactElement | null; Prefix: (props: import("./Prefix.js").TitleBarPrefixProps & import("react").RefAttributes) => import("react").ReactElement | null; Action: (props: import("./Action.js").TitleBarActionProps & import("react").RefAttributes) => import("react").ReactElement | null; };