/** * Gitignore management service * * Handles adding entries to .gitignore */ /** * Check if .gitignore exists */ export declare function gitignoreExists(rootPath: string): Promise; /** * Read .gitignore content */ export declare function readGitignore(rootPath: string): Promise; /** * Check if an entry is already in .gitignore */ export declare function isInGitignore(rootPath: string, entry: string): Promise; /** * Add an entry to .gitignore */ export declare function addToGitignore(rootPath: string, entry: string, comment?: string): Promise; /** * Create .gitignore with initial entries */ export declare function createGitignore(rootPath: string, entries: { entry: string; comment?: string; }[]): Promise; //# sourceMappingURL=gitignore-manager.d.ts.map