import { IndicatorResult } from './types';
export interface IndicatorInputs {
    lastReleaseDate?: string;
    keywords?: string[];
    description?: string;
    readme?: string;
    hasScreenshots?: boolean;
    hasAppIcon?: boolean;
    stars?: number;
    downloadsPerWeek?: number;
    openIssues?: number;
    contributors?: number;
    githubUrl?: string;
    testsPass?: boolean;
    hasRepository?: boolean;
}
export declare function computeIndicators(inputs: IndicatorInputs): IndicatorResult;
//# sourceMappingURL=indicators.d.ts.map