export interface PromptContext { wf: { instanceId: string; workingDir: string; }; node: { execId: string; id: string; }; state: unknown; loop?: { item: unknown; }; } export declare function compilePrompt(promptFile: string, ctx: PromptContext): string;