import type { Repo } from "./types"; export declare function getGroup(repo: Repo): string | null; export declare function getGroupedRepos(repos: Repo[]): { name: string; items: Repo[]; }[]; export declare function includesTopic(repo: Repo, topic: string): boolean;