import type { ConsoleUI } from "../ui.js"; import type { ReviewSession } from "./types.js"; import type { ILLMProvider } from "../../knowledge-book/llm/types.js"; export type RunReviewServerArgs = { kind: "attributes" | "flows"; session: ReviewSession; writeBack: (session: ReviewSession) => void; ui: ConsoleUI; llm?: ILLMProvider; }; export declare function runReviewServer(args: RunReviewServerArgs): Promise; export declare function confirmBrowserFallback(): Promise<"resume" | "abort">; //# sourceMappingURL=server.d.ts.map