export interface AnalyzeCommandConfig extends Record<string, unknown> {
    logLevel: string;
    glob?: string[];
    globs?: string[];
    cwd: string;
    configFile: string;
    watch: boolean;
    project: string | null;
}
export declare function runAnalyzeCommand(analyzeConfig: AnalyzeCommandConfig): Promise<void>;
