/**
 * Shell Command Analyzer for Cross-Platform Compatibility
 * Detects platform-specific shell commands and scripts
 */
import { CrossPlatformIssue, ShellCompatibilityAnalysis } from './types.js';
export declare class ShellCommandAnalyzer {
    private projectRoot;
    constructor(projectRoot: string);
    private isTestFile;
    private isAnalyzerFile;
    analyze(issues: CrossPlatformIssue[]): Promise<ShellCompatibilityAnalysis>;
    private analyzeShellCommands;
    private analyzeScriptFiles;
    private analyzeProcessHandling;
    private scanWithPatterns;
}
//# sourceMappingURL=ShellCommandAnalyzer.d.ts.map