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 Action * @public */ export interface TitleBarActionProps extends StylingProps, DataTestId { /** Elements to be displayed in the TitleBar Action slot. */ children: ReactNode; } /** * TitleBar Action component * @public */ export declare const Action: (props: TitleBarActionProps & import("react").RefAttributes) => import("react").ReactElement | null;