import type { PaneProps, PaneToggleProps } from '../overlays'; import type { Vec2 } from '../math'; import type { AnyStructure } from './'; import type { MoyoDataset } from '@spglib/moyo-wasm'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = Omit, `onclose`> & { structure: AnyStructure; pane_open?: boolean; atom_count_thresholds?: Vec2; toggle_props?: PaneToggleProps; pane_props?: PaneProps; highlighted_sites?: number[]; hovered_site_idx?: number | null; selected_sites?: number[]; sym_data?: MoyoDataset | null; }; declare const StructureInfoPane: import("svelte").Component<$$ComponentProps, {}, "selected_sites" | "pane_open" | "highlighted_sites" | "hovered_site_idx">; type StructureInfoPane = ReturnType; export default StructureInfoPane;