import * as React from 'react'; import { BoxProps } from '../Box'; export declare type LocalMenuProps = { hasDividers?: boolean; disableLeftPadding?: boolean; }; export declare type MenuProps = BoxProps & LocalMenuProps; export declare const Menu: React.ForwardRefExoticComponent & import("react-native").ViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & LocalMenuProps & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };