import * as React from 'react'; import { BoxProps } from '../Box'; export declare type LocalDropdownMenuGroupProps = { title?: string; }; export declare type DropdownMenuGroupProps = BoxProps & LocalDropdownMenuGroupProps; export declare const DropdownMenuGroup: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };