import { Preformatter } from "../yaml-tools/preformatter"; export declare class Bundler { private sourceFile; private destFile; private cacheDest; private source; private dataLines; constructor(preFormatter: Preformatter, destFile: string, cacheDest: string); getLines(): string; compile(): void; static from_file_or_files(source: string, dest: string, cache: string): Promise; }