import { FindConsistentOutlierChannelsOptions } from "../../types/analyzer.types.js"; import { NicheRepository } from "./niche.repository.js"; import { YoutubeService } from "../../services/youtube.service.js"; import { ChannelCache } from "../../types/niche.types.js"; export declare const REANALYSIS_SUBSCRIBER_GROWTH_THRESHOLD = 1.2; export declare function executeDeepConsistencyAnalysis(prospects: string[], options: FindConsistentOutlierChannelsOptions, youtubeService: YoutubeService, nicheRepository: NicheRepository): Promise<{ results: ChannelCache[]; quotaExceeded: boolean; }>;