import type { StructurePlotProps } from '../plot/bar'; import type { BondAngleNormalizeMode, BondAngleSplitMode } from './index'; type $$ComponentProps = StructurePlotProps & { split_mode?: BondAngleSplitMode; normalize?: BondAngleNormalizeMode; bin_width?: number; center_elements?: readonly string[]; neighbor_elements?: readonly string[]; }; declare const BondAnglePlot: import("svelte").Component<$$ComponentProps, {}, "mode" | "show_controls" | "controls_open" | "loading" | "error_msg">; type BondAnglePlot = ReturnType; export default BondAnglePlot;