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