import type { RuntimeRolloutLoadAudit } from './runtimeRolloutLoader'; export interface ManualPrimaryRuntimeReceiptLifecycle { activated(audit: RuntimeRolloutLoadAudit): Promise; stopping(): Promise; stopped(): Promise; failed(): Promise; }