export declare const integrationConfig: {
    githubRepo: string;
    githubToken: string | undefined;
    timeframe: "week";
    weights: {
        commits: number;
        pullRequests: number;
        reviews: number;
        issues: number;
    };
    validation: {
        github: {
            minCommits: number;
            maxCommitsPerDay: number;
            minAuthors: number;
            suspiciousAuthorRatio: number;
        };
    };
    isTestMode: boolean;
};
export declare const shouldSkipIntegrationTests: boolean;
