/** * fit-runner — live-view entry for `opensip fit` via @opensip-cli/cli-live. */ import { type FitOptions } from '@opensip-cli/contracts'; import { type LiveViewContext, type ToolRunCompletion } from '@opensip-cli/core'; import type { DataStore } from '@opensip-cli/datastore'; export interface RenderFitLiveOptions { readonly setExitCode?: (code: number) => void; } export declare function renderFitLive(args: FitOptions, contextOrDatastore?: DataStore | LiveViewContext, options?: RenderFitLiveOptions): Promise; //# sourceMappingURL=fit-runner.d.ts.map