import * as React from 'react'; import { MenuItemProps as ChakraMenuItemProps } from '@chakra-ui/react'; export interface MenuItemProps extends ChakraMenuItemProps { /** * MenuItem label * Children always takes precedence over this prop. */ label?: React.ReactNode; /** * Wraps the item with the link wrapper configured in SaasProvider. */ href?: string; } export declare const MenuItem: import("@chakra-ui/system/dist/system.types").ComponentWithAs, MenuItemProps>; //# sourceMappingURL=menu.d.ts.map