/** * Deep-interview stage adapter for the default Autopilot loop. * * Produces a model-facing instruction for the requirements clarification gate. */ import type { PipelineStage } from '../types.js'; export interface DeepInterviewDescriptor { task: string; cwd: string; sessionId?: string; instruction: string; } export declare function createDeepInterviewStage(): PipelineStage; export declare function buildDeepInterviewInstruction(task: string): string; //# sourceMappingURL=deep-interview.d.ts.map