/** * GitHub Projects V2 setup module * * Creates and configures GitHub Projects V2 for agent tracking */ interface ProjectV2 { id: string; url: string; number: number; } /** * Create a new GitHub Projects V2 and link repository */ export declare function createProjectV2(owner: string, repo: string, token: string): Promise; /** * Link existing repository to existing Projects V2 */ export declare function linkToProject(_owner: string, _repo: string, _token: string): Promise; export {}; //# sourceMappingURL=projects.d.ts.map