import { type ReactNode } from 'react'; import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * 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) => React.ReactElement | null;