import type { TrajectoryRun, TrajectoryRunSummary } from '../run'; export declare const serve_run_over_port: (run: TrajectoryRun) => MessagePort; export declare const dispose_run_port: (port: MessagePort | undefined) => void; export declare const worker_run: (port: MessagePort, summary: TrajectoryRunSummary, release?: () => void) => TrajectoryRun;