/** * Authenticated host filesystem browse API for Web UI (e.g. session working directory). * Lists directories the gateway process can read — intended for trusted operators only. */ import type { Hono } from 'hono'; import type { AuthenticatedRouteDeps } from './deps.js'; export declare function registerHostFsRoutes(authenticated: Hono, _deps: AuthenticatedRouteDeps): void;