import { type SecondaryActionsProps, type TitleBlockMenuItemProps } from '../types'; type Props = { secondaryActions?: SecondaryActionsProps; secondaryOverflowMenuItems?: TitleBlockMenuItemProps[]; reversed?: boolean; }; export declare const SecondaryActions: { ({ secondaryActions, secondaryOverflowMenuItems, reversed, }: Props): JSX.Element | null; displayName: string; }; export {};