import React, { HTMLProps } from "react"; declare type TMenuMode = "section" | "withArrow"; export interface MenuItemsProps { checkGreen?: boolean; checkBlack?: boolean; icon: React.ReactNode; mode?: TMenuMode | TMenuMode[]; onClick?: () => void; title: string; descriptions?: React.ReactNode[]; } export interface MenuProps extends Omit, "ref" | "as"> { menuItems: MenuItemsProps[]; menuIconProps?: React.SVGProps; topSpace: number; rightSpace: number; showMenu: boolean; rightAsLeft?: boolean; } export declare const Menu: ({ menuItems, topSpace, rightSpace, showMenu, rightAsLeft, ...props }: MenuProps) => JSX.Element; export {};