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