import type { ComputedRef } from 'vue'; /** * Checks whether the current session user has at least one reachable * inventory route in the current app configuration. * * This is intentionally aligned with navigation routing so feature-gated * routes do not count as accessible entry points. */ export declare function useInventoryAccess(): { hasAnyAccessibleInventoryRoute: ComputedRef; };