/** * This function will check if the user is reputable enough to be able to use the app * @param userLogin The username of the user * @param minimumAmountOfFollowing The minimum amount of following the user should have * @param minimumAmountOfFollowers The minimum amount of followers the user should have * @param minimumAmountOfPublicRepos The minimum amount of public repos the user should have * @returns Return the avatar URL of the user if the user is reputable, false otherwise */ export declare const githubReputation: (userLogin: string, minimumAmountOfFollowing: number, minimumAmountOfFollowers: number, minimumAmountOfPublicRepos: number, minimumAge: number) => Promise; //# sourceMappingURL=security.d.ts.map