export declare namespace GasMenu { interface Meta { title: string; subtitle: string; routes: GasMenu.Route[]; version?: string; } interface Route { title: string; route: string; callback: () => void; notificationCount?: number; icon?: string; disabled?: boolean; active?: boolean; childs?: Route[]; } interface Bottom { title: string; icon: string; callback: () => void; hideMenuWhenClicked?: boolean; } interface User { logoutCallback: () => void; title?: string; icon?: string; isLoading?: boolean; fio?: string; } }