import type { TranslatableString } from '../i18n' import type { IconType } from './index' export interface NavLink { label: TranslatableString to?: string icon: IconType href?: string localized?: string children?: NavLink[] action?: () => void class?: string }