/** * Check if ".lldebugger" exists in .gitignore */ declare function doesExistInGitIgnore(): Promise; /** * Add ".lldebugger" to .gitignore if it doesn't exist * @returns */ declare function addToGitIgnore(): Promise; /** * Remove ".lldebugger" from .gitignore */ declare function removeFromGitIgnore(): Promise; export declare const GitIgnore: { doesExistInGitIgnore: typeof doesExistInGitIgnore; addToGitIgnore: typeof addToGitIgnore; removeFromGitIgnore: typeof removeFromGitIgnore; }; export {};