import type { ActiveRun } from "./types.ts"; export declare function hydrateRun(parsed: ActiveRun): ActiveRun | undefined; export declare function normalizeQuestionOptions(options: Array<{ label: string; description?: string; }> | undefined, choices: string[] | undefined): Array<{ label: string; description?: string; }> | undefined;