import { type ReactElement } from 'react'; import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * @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) => import("react").ReactElement | null;