import type { InlangConfig } from "./schema.js"; import type { Result } from "../utilities/result.js"; export declare class ParseConfigException extends Error { #private; } /** * Validates the config. * * If you want to test the config of the inlang.config.js file, * use the `testConfigFile` function instead. * * @example * const [success, error] = await testConfig(args) */ export declare function parseConfig(args: { config: InlangConfig; }): Promise>; //# sourceMappingURL=parseConfig.d.ts.map