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