import type { CommandModule } from 'yargs'; import type { IssueGroup } from '../../types/analysis.types'; import type { AnalyzeCommandArgs } from '../types/cli.types'; export declare function runStackAnalysis(finalConfig: AnalyzeCommandArgs, fingerprint?: string, authToken?: string, licenseInfo?: any, usageData?: any, _project?: string, licenseKey?: string, forceLocal?: boolean, sensitiveDataConfig?: { enabled?: boolean; warnOnly?: boolean; allowPatterns?: string[]; ignoreProperties?: string[]; strictMode?: boolean; }, baselineExclude?: Set, collectFingerprints?: Set, skipRendering?: boolean): Promise<{ totalResources: number; recommendationMaps: {}; hasCriticalIssues: boolean; scannedResourceIds: Set; hasSensitiveData?: undefined; } | { totalResources: number; recommendationMaps: Record; hasCriticalIssues: boolean; hasSensitiveData: boolean; scannedResourceIds: Set; }>; export declare const analyzeCommand: CommandModule, AnalyzeCommandArgs>;