/** * Typed wrapper for the host claw extension (`window.host.ext.claw`). * * `host.claw` is a host-mediated assistant surface. The privileged assistant * runtime stays in the trusted host; products only get this narrow bridge. */ import type { HostClawAskRequest, HostClawAskResponse, HostClawStatus } from "./types.js"; export declare function ask(request: HostClawAskRequest): Promise; export declare function status(): Promise; //# sourceMappingURL=claw.d.ts.map