import type { InlangEnvironment } from "../environment/types.js"; import type { Result } from "../utilities/result.js"; import { ParseConfigException } from "../config/parseConfig.js"; /** * Validates the inlang.config.js file. * * If you only want to validate the config object, * use the `testConfig` function instead. * * @example * const [success, error] = await testConfigFile(args) */ export declare function testConfigFile(args: { file: string; env: InlangEnvironment; }): Promise>; //# sourceMappingURL=testConfigFile.d.ts.map