export interface SystemOverlayRunContext { readonly orgId: string; readonly projectId: string | null; readonly role: string; readonly surface: string; readonly stageKey: string | null; readonly runId: string | null; } export interface SystemOverlayContribution { readonly id: string; readonly priority: number; readonly render: (ctx: SystemOverlayRunContext) => string | null; } //# sourceMappingURL=system-overlay-contribution.d.ts.map