/** * Beads issue from bd list --json */ export interface BeadsIssue { id: string; title: string; status: string; priority?: number; issue_type?: string; description?: string; created_at?: string; updated_at?: string; labels?: string[]; } /** * Beads status information */ export interface BeadsStatus { available: boolean; issueCount: number; openCount: number; readyCount: number; readyIssues: BeadsIssue[]; openIssues: BeadsIssue[]; allIssues: BeadsIssue[]; syncBranch?: string; daemonRunning?: boolean; } /** * Check if beads is available in the project */ export declare function isBeadsAvailable(projectPath: string): Promise; /** * Get beads status and issues */ export declare function getBeadsStatus(projectPath: string): Promise; //# sourceMappingURL=beads.d.ts.map