import type { WatchlistRepo } from './watchlist.js'; export interface BountyProgram { handle: string; name: string; repos: string[]; asset: string; } export interface ProgramRegistry { programs: BountyProgram[]; } export declare function loadPrograms(path: string): Promise; export declare function findNewRepos(registry: ProgramRegistry, existingUrls: string[]): WatchlistRepo[];