import { PaddingProps } from "styled-system"; import { MenuWithChildren } from "./menu-item.component"; import type { MenuType } from "../menu.types"; interface StyledMenuItemWrapperProps extends Pick, PaddingProps { menuType: MenuType; selected?: boolean; hasSubmenu?: boolean; isOpen?: boolean; inFullscreenView?: boolean; asPassiveItem?: boolean; icon?: string; ariaLabel?: string; asDiv?: boolean; hasFocusableChild?: boolean; hasInput?: boolean; menuItemVariant?: Pick["variant"]; inSubmenu?: boolean; } declare const StyledMenuItemWrapper: import("styled-components").StyledComponent<"a", any, { theme: object; } & { as: import("react").ForwardRefExoticComponent>; } & StyledMenuItemWrapperProps, "theme" | "as">; export default StyledMenuItemWrapper;