import type { PaneProps, PaneToggleProps } from '../overlays'; import DraggablePane from '../overlays/DraggablePane.svelte'; import type { ComponentProps } from 'svelte'; import type { TrajectoryType } from './index'; type $$ComponentProps = Omit, `children`> & { trajectory: TrajectoryType; current_step_idx: number; current_filename?: string | null; current_file_path?: string | null; file_size?: number | null; file_object?: File | null; pane_open?: boolean; toggle_props?: PaneToggleProps; pane_props?: PaneProps; }; declare const TrajectoryInfoPane: import("svelte").Component<$$ComponentProps, {}, "pane_open">; type TrajectoryInfoPane = ReturnType; export default TrajectoryInfoPane;