export declare const PROMPT_TEMPLATE_VERSION = 1;
/**
 * Assembles the full prompt by combining task, files context, and formatting instructions
 */
export declare function assembleFullPrompt({ filesContext, prompt, }: {
    filesContext: string;
    prompt: string;
}): string;
