import { FC } from 'react'; /** * ActionMenu.Group properties */ export interface ActionMenuGroupPropsStrict { /** Adds one or more classnames for an element */ className?: string; /** Adds a label for group of menu items */ label?: string; } export interface ActionMenuGroupProps extends ActionMenuGroupPropsStrict { /** Unstrict Props */ [propName: string]: any; } export declare const ActionMenuGroup: FC;