export declare const menuTheme: { baseStyle?: { button: { fontWeight: string; }; list: { py: number; borderRadius: string; border: string; overflow: string; boxShadow: string; }; item: { p: number; transitionProperty: string; transitionDuration: string; fontWeight: string; bg: string; color: string; boxShadow: string; _hover: { boxShadow: string; }; _focus: { boxShadow: string; }; ".chakra-menu__icon-wrapper": { fontSize: string; }; }; } | undefined; sizes?: { "2xs": { button: { minHeight: number; fontSize: string; }; item: { minHeight: number; fontSize: string; }; }; } | undefined; variants?: { web: (props: import('@chakra-ui/styled-system').StyleFunctionProps) => { button: { fontWeight: string; }; list: { py: number; borderRadius: string; border: string; bgColor: string; overflow: string; boxShadow: string; }; item: { p: number; fontWeight: string; bgColor: string; color: string; _hover: { color: string; bg: string; }; _focus: { color: string; bgColor: string; }; ".chakra-menu__icon-wrapper": { fontSize: string; }; }; }; } | undefined; defaultProps?: { size?: "2xs" | undefined; variant?: "web" | undefined; colorScheme?: string | undefined; } | undefined; parts: ("button" | "list" | "icon" | "item" | "groupTitle" | "command" | "divider")[]; };