import type { RoadmapTicket } from '../../core/index.js'; import { type ReviewGateName } from '../sprint-state.js'; interface NowSnapshot { sprint: number; sprintLabel: string; source: string; roadmap?: { name: string; theme?: string; phase?: string; phaseProgress?: string; status: string; }; sprintState?: { phase: string; pendingGates: string[]; requiredReviewsPending: ReviewGateName[]; reviewWaivers: ReviewGateName[]; }; claims: { total: number; ticketClaims: number; }; nextAction: string; nextTicket?: RoadmapTicket; } declare function buildNowSnapshot(cwd: string, flags: Record): Promise; export declare function nowCommand(args: string[]): Promise; export declare const testInternals: { buildNowSnapshot: typeof buildNowSnapshot; }; export {}; //# sourceMappingURL=now.d.ts.map