import type { PaneProps, PaneToggleProps } from '../overlays'; import { type AnyStructure } from './'; import type { SymmetryDataset, WyckoffPos } from '../symmetry'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = HTMLAttributes & { structure: AnyStructure; pane_open?: boolean; atom_count_thresholds?: [number, number]; toggle_props?: PaneToggleProps; pane_props?: PaneProps; highlighted_sites?: number[]; hovered_site_idx?: number | null; selected_sites?: number[]; sym_data?: SymmetryDataset | null; wyckoff_positions?: WyckoffPos[]; }; declare const StructureInfoPane: import("svelte").Component<$$ComponentProps, {}, "pane_open" | "selected_sites" | "highlighted_sites" | "hovered_site_idx">; type StructureInfoPane = ReturnType; export default StructureInfoPane;