import type { AuthUsageData, RuntimeLicenseInfo } from '../../shared/auth'; import type { AnalyzeCommandArgs } from '../types/cli.types'; export interface RunWatchLoopArgs { config: AnalyzeCommandArgs; fingerprint: string; authToken: string | undefined; licenseInfo: RuntimeLicenseInfo; usageData: AuthUsageData | undefined; project: string | undefined; licenseKey: string | undefined; } export declare const runWatchLoop: (args: RunWatchLoopArgs) => Promise;