import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface AppHeaderActionItemsProps extends WithChildren, StylingProps, DataTestId { } /** * The action items section of the AppHeader, which collapses into an overlay on small screen sizes. * @public */ export declare const ActionItems: (props: AppHeaderActionItemsProps & import("react").RefAttributes) => React.ReactElement | null;