import React from 'react'; import type { Event } from '../../events/schema'; import type { RunRecord } from '../types'; export declare function PrCiReviewPanel({ run, events, nowMs, }: { run: RunRecord; events: Event[]; nowMs: number; }): React.ReactElement;