import type { ViewerPaneOptions } from '../overlays'; import type { TrajectoryRun } from '../trajectory'; import type { StructureIdSweep } from './collect'; type $$ComponentProps = ViewerPaneOptions & { run?: TrajectoryRun; pane_open?: boolean; result?: StructureIdSweep; }; declare const TrajectoryStructureIdPane: import("svelte").Component<$$ComponentProps, {}, "result" | "pane_open">; type TrajectoryStructureIdPane = ReturnType; export default TrajectoryStructureIdPane;