type Template = { name: string; outputPath: string; data: { [key: string]: unknown; }; }; export declare const compileTemplate: ({ name, data, outputPath }: Template) => void; export declare const runInitialStructureCompilation: (targetDir: string) => void; export {};