import { CommonProps, SidebarItemProps } from "@trackunit/react-components"; import { ReactElement } from "react"; import { ActionModel, DropdownModel } from "./Actions"; interface ActionContainerAndOverflowProps extends CommonProps { actions: Array; dropdownActions?: Array; moreActions?: Array> | ReactElement; } /** * `ActionContainerAndOverflow` renders a set of actions and a MoreMenu for overflow. * It makes use of the `useOverflowItems` hook to determine which items should go into the overflow menu. * See ActionContainerAndOverflowProps for prop documentation. * * @returns {ReactElement} The rendered component. */ export declare const ActionContainerAndOverflow: ({ actions, dropdownActions, moreActions, "data-testid": dataTestId, }: ActionContainerAndOverflowProps) => ReactElement; export {};