import type { ViewerPaneOptions } from '../overlays'; import type { TrajectoryRun } from '../trajectory'; import type { VacfResult } from './index'; type $$ComponentProps = ViewerPaneOptions & { run?: TrajectoryRun; pane_open?: boolean; result?: VacfResult; default_dt?: number | null; default_time_unit?: string; }; declare const TrajectoryVacfPane: import("svelte").Component<$$ComponentProps, {}, "result" | "pane_open">; type TrajectoryVacfPane = ReturnType; export default TrajectoryVacfPane;