import type { StructurePlotProps } from '../plot/bar'; import type { StructureInput } from '../plot/core/structure-input'; import type { StructureIdOptions, StructureIdResult } from './calc-structure-id'; type $$ComponentProps = Omit & { id_results?: StructureIdResult[]; structures?: StructureInput; id_options?: StructureIdOptions; layout?: `by_structure` | `over_frames`; normalize?: boolean; frame_labels?: (number | string)[]; }; declare const StructureTypePlot: import("svelte").Component<$$ComponentProps, {}, "mode" | "show_controls" | "controls_open" | "loading" | "error_msg" | "id_results">; type StructureTypePlot = ReturnType; export default StructureTypePlot;