import { FlexboxProps, LayoutProps, PaddingProps } from "styled-system"; import type { MenuProps } from "./menu.types"; interface StyledMenuProps extends Pick, FlexboxProps, LayoutProps { inFullscreenView?: boolean; } declare const StyledMenuWrapper: import("styled-components").StyledComponent<"ul", any, StyledMenuProps, never>; interface StyledMenuItemProps extends Pick, PaddingProps { inFullscreenView?: boolean; inSubmenu?: boolean; } declare const StyledMenuItem: import("styled-components").StyledComponent<"li", any, { theme: object; } & StyledMenuItemProps, "theme">; export { StyledMenuWrapper, StyledMenuItem };