import type { InlangConfig, InlangConfigModule } from "./schema.js"; import type { InlangEnvironment } from "../environment/types.js"; /** * Sets up the inlang config module. * * @example * import { setupConfig, type InlangConfigModule } from "@inlang/core/config" * * const module = (await import("./inlang.config.js")) as InlangConfigModule * const config = await setupConfig({ module, env }) */ export declare function setupConfig(args: { module: InlangConfigModule; env: InlangEnvironment; }): Promise; //# sourceMappingURL=setupConfig.d.ts.map