import { type LapGateDeps } from './gate.js'; /** @deprecated Use `LapGateDeps` from `./gate.js`. */ export type LapObserveDeps = LapGateDeps; /** * Unified bootstrap endpoint. One call returns everything the LLM * needs to start acting on the app: * - state (dynamic, from browser) * - actions (dynamic, from browser) * - description (static, from cached hello frame) * - context (dynamic, from browser — agentContext(state)) * * Replaces the get_state + list_actions + describe_app trio at the * MCP layer. Those LAP endpoints remain available for specialized * callers, but the common "what can I see, what can I do" question * is one call instead of three. */ export declare const handleLapObserve: (req: Request, deps: LapGateDeps) => Promise; //# sourceMappingURL=observe.d.ts.map