import { type DefaultActionProps, type PrimaryActionProps, type SecondaryActionsProps, type TitleBlockMenuItemProps } from '../types'; type MainActionsProps = { primaryAction?: PrimaryActionProps; defaultAction?: DefaultActionProps; reversed?: boolean; secondaryActions?: SecondaryActionsProps; secondaryOverflowMenuItems?: TitleBlockMenuItemProps[]; showOverflowMenu?: boolean; }; export declare const MainActions: { ({ primaryAction, defaultAction, secondaryActions, secondaryOverflowMenuItems, reversed, }: MainActionsProps): JSX.Element; displayName: string; }; export {};