import React from "react"; export interface MyAccountSidebarProps { listMenu: Array; dashboard: ItemMenu; account: ItemMenu; contract?: ItemMenu; handleSetOverlay: (value: boolean) => void; activeMenu: ItemMenu; pathnameActive?: string; } type ItemMenu = { id: string; icon?: JSX.Element; label: string; href?: string; items?: Array; }; declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, handleSetOverlay, activeMenu, pathnameActive, }: MyAccountSidebarProps) => React.JSX.Element; export default MyAccountSidebar;