import type { IssueRef, ParsedPhase } from '@generacy-ai/cockpit'; import type { StatusRow } from './row.js'; export interface RowGroup { header: string; rows: StatusRow[]; } /** Sentinel used on StatusRow.phase to indicate adhoc-membership. */ export declare const ADHOC_PHASE_TOKEN = "__adhoc__"; export declare function groupRows(rows: StatusRow[], phases: ParsedPhase[], _epicOwnerRepo: string, adhocRefs?: IssueRef[]): RowGroup[]; //# sourceMappingURL=group.d.ts.map