import { default as React, PropsWithChildren } from 'react'; type ActionsMenuProps = PropsWithChildren<{ horizontal?: boolean; disabled?: boolean; }>; /** * Allows you to draw a menu of actions grouped within a popover. * Inside the menu you can insert one or more components that, it is advisable, are buttons. * * @example * * * * */ declare function ActionsMenu({ horizontal, disabled, children }: ActionsMenuProps): React.ReactElement | null; export { ActionsMenu }; export type { ActionsMenuProps }; //# sourceMappingURL=ActionsMenu.d.ts.map