import { type CometResumeProbeAction, type CometResumeProbeConfidence, type CometResumeProbeEvidence } from '../comet-classic/classic-resume-probe.js'; import type { CometEntryResolutionSource, CometEntrySkill, CometWorkflow } from './types.js'; export declare const COMET_RESUME_PROBE_SCHEMA_VERSION: "comet.resume_probe.v2"; export interface CometEntryResumeProbeInput { schema_version: typeof COMET_RESUME_PROBE_SCHEMA_VERSION; utterance: string; locale: string; agent_context: { non_trivial_work: boolean; already_in_comet_flow: boolean; }; } export interface CometEntryResumeProbeCandidate { name: string; phase: string; selected: boolean; } export interface CometEntryResumeProbeResult { schema_version: typeof COMET_RESUME_PROBE_SCHEMA_VERSION; workflow: CometWorkflow | null; skill: CometEntrySkill | null; entrySource: CometEntryResolutionSource | null; action: CometResumeProbeAction; changeName: string | null; phase: string | null; nextCommand: '/comet-native' | '/comet-classic' | null; confidence: CometResumeProbeConfidence; reasonCode: string; reason: string; evidence: CometResumeProbeEvidence[]; candidates: CometEntryResumeProbeCandidate[]; } export declare function resolveCometEntryResumeProbe(startPath: string, rawInput: unknown): Promise; //# sourceMappingURL=resume-probe.d.ts.map