/** * openlore init — programmatic API * * Detects project type and creates openlore configuration. * No side effects (no process.exit, no console.log). */ import type { InitApiOptions, InitResult } from './types.js'; /** * Initialize openlore in a project directory. * * Creates `.openlore/config.json`, the `openspec/` directory structure, * and updates `.gitignore`. * * @throws Error if openspec path is outside project root * @throws Error if config exists and force is false */ export declare function openloreInit(options?: InitApiOptions): Promise; //# sourceMappingURL=init.d.ts.map