/** * Main Init Command Implementation * * This file contains the implementation of the init command * Handles initialization of new AI task management projects */ import { InitOptions, CommandResult } from './types'; /** * Initialize a new AI Task Manager project * * Creates directory structures and copies template files based on the selected harnesses. * Validates input, creates necessary directories, and copies appropriate templates. * * @param options - Initialization options containing harness selection * @returns CommandResult indicating success or failure with details */ export declare function init(options: InitOptions): Promise; /** * Check if a directory already has AI Task Manager initialized */ export declare function isInitialized(baseDir?: string): Promise; //# sourceMappingURL=index.d.ts.map