import { SubmenuProps } from "./submenu.component"; import type { MenuType } from "../../menu.types"; interface SharedStyleProps { inFullscreenView?: boolean; menuType?: MenuType; } interface StyledSubmenuWrapperProps extends SharedStyleProps { isSubmenuOpen?: boolean; asPassiveItem?: boolean; } interface StyledSubmenuProps extends SharedStyleProps, Pick { submenuDirection?: string; maxHeight?: string; applyFocusRadiusStyling: boolean; applyFocusRadiusStylingToLastItem: boolean; } declare const StyledSubmenuWrapper: import("styled-components").StyledComponent<"div", any, { theme: object; } & StyledSubmenuWrapperProps, "theme">; declare const StyledSubmenu: import("styled-components").StyledComponent<"ul", any, StyledSubmenuProps, never>; export { StyledSubmenu, StyledSubmenuWrapper };