import type { ViewerPaneOptions } from '../overlays'; import type { TrajectoryFrame, TrajectoryRun } from './index'; type $$ComponentProps = ViewerPaneOptions & { run: TrajectoryRun; current_step_idx: number; current_frame?: TrajectoryFrame | null; pane_open?: boolean; }; declare const TrajectoryInfoPane: import("svelte").Component<$$ComponentProps, {}, "pane_open">; type TrajectoryInfoPane = ReturnType; export default TrajectoryInfoPane;