export interface PrEntry { pr_number: string; title: string | null; url: string; project: string; repository: string; source: 'azure_devops' | 'github'; total_mentions: number; status: string; created_by: string; created_date: string; source_branch: string; target_branch: string; merge_status: string; reviewers: Array<{ name: string; vote: string; }>; } export interface WiEntry { work_item_id: string; title: string | null; url: string; project: string; total_mentions: number; state: string; assigned_to: string; priority: string; severity: string; area_path: string; created_date: string; work_item_type: string; } export declare function listDevops(brainHome: string): Promise<{ pullRequests: PrEntry[]; workItems: WiEntry[]; userName: string; }>; export declare function getDevopsDetail(brainHome: string, entityType: 'pr' | 'wi', entityId: string): Promise<{ entityType: string; entityId: string; description: string; mentions: string; }>;