import type { EvidenceRecord } from "../app/state.js"; import type { TimelineAgentMode } from "../demo/agent/timelineAgent.js"; import { SceneProgress } from "./SceneProgress.js"; import { EvidenceReceipt } from "./evidence/EvidenceReceipt.js"; import type { DemoChromePresentation } from "./presentation-demo-chrome.js"; import { PresentationDemoRail } from "./PresentationDemoRail.js"; import type { MainLocation } from "./storyboard.js"; type PresentationFooterProps = { readonly location: MainLocation; readonly evidence: readonly EvidenceRecord[]; readonly demoRail: DemoChromePresentation; readonly runPreparedWorkflow?: ((mode: TimelineAgentMode) => Promise) | undefined; readonly retryHealth: () => void; readonly showEvidenceReceipt: boolean; readonly inspectEvidence: () => void; }; export const PresentationFooter = ({ location, evidence, demoRail, runPreparedWorkflow, retryHealth, showEvidenceReceipt, inspectEvidence, }: PresentationFooterProps) => ( );