/** * Ignore Command - drift ignore * * Ignore a pattern to stop tracking it. * * MIGRATION: Now uses IPatternService for pattern operations. * * @requirements 29.6 */ import { Command } from 'commander'; export interface IgnoreOptions { /** Reason for ignoring */ reason?: string; /** Skip confirmation prompt */ yes?: boolean; /** Enable verbose output */ verbose?: boolean; } export declare const ignoreCommand: Command; //# sourceMappingURL=ignore.d.ts.map