import { configurationFilesCandidates } from "@intlayer/config/node"; //#region src/initConfig/index.d.ts /** Values injected into the configuration file template. */ export type InitConfigOptions = { /** Locales detected in the project, inserted into `internationalization.locales`. */ locales?: string[]; /** * Dev-server URL of the detected framework, inserted as * `editor.applicationURL` (the template defaults to `http://localhost:3000`). */ applicationURL?: string; }; /** * Initialize the Intlayer configuration file. No-ops when a configuration file * already exists at `baseDir`. */ export declare const initConfig: (format: (typeof configurationFilesCandidates)[number], baseDir: string, options?: InitConfigOptions) => Promise; //#endregion //# sourceMappingURL=index.d.ts.map