import type { ThoughtTracker } from "./tracker.js"; import { type ThoughtData, type ValidatedThoughtData } from "./types.js"; export declare function toThoughtData(args: Record): ThoughtData; export declare function applyThoughtDefaults(data: ThoughtData): ValidatedThoughtData; export declare function processThought(args: Record, tracker: ThoughtTracker): Record;