import type { OntologyConfig } from "../config/types.js"; import type { OntologyDiff } from "../lockfile/types.js"; export interface LaunchReviewOptions { config: OntologyConfig; diff: OntologyDiff; configDir: string; configPath?: string; } /** * Launch the review UI in the background (non-blocking). * * This is a fire-and-forget function that starts the browser server * and opens the review UI without blocking the caller. Useful for * auto-launching the review UI when ontology changes are detected * in dev mode. * * @example * ```ts * // Auto-launch review UI when changes are detected * if (diff.hasChanges && isDev) { * launchReviewInBackground({ config, diff, configDir }); * } * ``` */ export declare function launchReviewInBackground(options: LaunchReviewOptions): Promise;