import React, { FC } from 'react'; interface ActionMenuProps { /** Content of the Action Menu, should be ActionMenuItem or ActionMenuItemSpacer. */ children: React.ReactNode; /** The width of the action menu. */ width?: number; /** Specify a different layer id to tie the dropdown to. */ layerRootId?: string; } export declare const ActionMenu: FC; export {};