export type NavChild = { key: string, name: string items: NavChildItem[] } export type NavChildItem = { title: string subtitle?: string icon?: any to: string } export type NavLink = { label: string to: string items?: NavChild[], options?:any icon?: any } export type ProjectKeys = | 'counterparty' | 'pk' | 'work' | 'tenders' | 'fines' | 'analytics' | 'fea' | 'compliance';