/** * the bundler can some parameters form dynamic imports which makes it impossible to import json files correctly * WHen using const a = await import('path/to/file.json', { with: { type: 'json' } }); * the resulted JS bundle is stripped to * const a = await import('path/to/file.json'); * * This file is to workaround that issue by reading the file content directly * */ import * as fs from 'fs'; export declare const readFileAsync: typeof fs.readFile.__promisify__; export declare const readJsonFile: (filePath: string) => Promise; //# sourceMappingURL=readFile.d.ts.map