import type { Command } from 'commander'; import type { Config } from '../types/index.js'; /** * Project command - Setup and manage GitHub Projects V2 integration */ export declare function projectCommand(program: Command, config: Config): void; /** * Run project setup flow and return configuration values * This can be called from both 'project setup' and 'init' commands * Returns null if setup is cancelled or fails */ export declare function runProjectSetupFlow(): Promise<{ projectNumber: number; projectId: string; projectOwner: string; enableAutoSync: boolean; } | null>; //# sourceMappingURL=project.d.ts.map