import type { ElementSymbol } from '../element'; import type { TrajectoryLineColorMode, TrajectoryLinesStats, TrajectoryLineWrapMode } from './trajectory-lines'; import type { TrajectoryPositionStream } from '../trajectory'; type $$ComponentProps = { position_stream?: TrajectoryPositionStream | null; end_frame?: number; trail_frames?: number | null; frame_stride?: number; elements?: readonly ElementSymbol[] | null; color_mode?: TrajectoryLineColorMode; element_colors?: Partial>; wrap_mode?: TrajectoryLineWrapMode; anchor_positions?: Float64Array | null; build_result?: TrajectoryLinesStats | null; }; declare const TrajectoryLines: import("svelte").Component<$$ComponentProps, {}, "build_result">; type TrajectoryLines = ReturnType; export default TrajectoryLines;