import type { StructureInput } from '../core/structure-input'; import type { BondingStrategy } from '../../structure/bonding'; import type { ComponentProps } from 'svelte'; import type StructureBarPlot from './StructureBarPlot.svelte'; export { default as BarPlot } from './BarPlot.svelte'; export { default as BarPlotControls } from './BarPlotControls.svelte'; export { default as SpacegroupBarPlot } from './SpacegroupBarPlot.svelte'; export { default as StructureBarPlot } from './StructureBarPlot.svelte'; export type StructurePlotProps = Omit, `series` | `primary_axis` | `value_axis` | `subject` | `empty_subject` | `tooltip` | `dropped_entries`> & { structures: StructureInput; strategy?: BondingStrategy; };