import type { Express } from 'express'; import type { LickBridge } from './lick-bridge.js'; /** * Routes that forward to the connected browser over the lick bridge: * tray status, webhook management + receiver, and cron task management. */ export declare function registerLickApiRoutes(app: Express, bridge: LickBridge): void;