/**
 * Implementation of the Xcode lint command.
 * This command analyzes code and offers to fix warnings.
 *
 * Key features:
 * - Warning analysis
 * - Interactive fixes
 * - SwiftLint integration
 */
import type { Command, CommandGenerator, CommandOptions } from '../../types';
export declare class LintCommand implements Command {
    /**
     * Main execution method for the lint command.
     * Analyzes code and offers to fix warnings.
     *
     * @param query - Command query string (unused)
     * @param options - Command options
     * @yields Status messages and command output
     */
    execute(query: string, options: CommandOptions): CommandGenerator;
}
