export interface TrendingRepository {
    name: string;
    url: string;
    stars: number;
    language: string;
}
export interface GithubTrendOptions {
    /**
     * Programming language
     * @example "typescript", "go", "rust", "python",...
     */
    lang?: string;
    /**
     * Date range.
     * @default "daily"
     */
    time?: "daily" | "weekly" | "monthly";
}
export declare function fetchTrendingRepos(options?: GithubTrendOptions): Promise<TrendingRepository[]>;
//# sourceMappingURL=github-trends.d.ts.map