/** * Create a file in the project root directory */ export declare function createProjectFile(filename: string, content: string, options?: { append: boolean; }): Promise; /** * Create a code collection file in the project root directory */ export declare function createCodeCollectionFile(inputPath: string, content: string): Promise; /** * Create an analysis file in the project root directory */ export declare function createAnalysisFile(filename: string, content: string, options?: { append: boolean; }): Promise;