import { ExtractedVariables } from '../types'; /** * Replace variables in all files in the template directory * @param templateDir - Path to the template directory * @param outputDir - Path to the output directory * @param extractedVariables - Variables extracted from the template * @param answers - User answers for variable values */ export declare function replaceVariables(templateDir: string, outputDir: string, extractedVariables: ExtractedVariables, answers: Record): Promise;