/** Which compute rows a session ships. */ export declare const COMPUTE_KINDS: readonly ["diff", "outcome", "commits", "markers"]; export interface DerivedRows { session_id: string; mtime: number; compute: Array<{ kind: string; mtime: number; data: unknown; }>; outcome_row: unknown | null; } export declare function collectDerivedRows(ref: { prefixedId: string; toolId: string; mtime: number; }, mtime: number, count: { redactions: number; }, maxRowBytes: number): DerivedRows; //# sourceMappingURL=derived.d.ts.map