import type { SVGAttributes } from 'svelte/elements'; type $$ComponentProps = SVGAttributes & { symbol?: string; name?: string; shells: number[]; adapt_size?: boolean; shell_width?: number; size?: number; base_fill?: string; orbital_period?: number; nucleus_props?: Record; shell_props?: Record; electron_props?: Record; highlight_shell?: number | null; number_electrons?: boolean | `hierarchical` | `sequential` | ((idx: number) => string); electron_label_props?: Record; }; declare const BohrAtom: import("svelte").Component<$$ComponentProps, {}, "">; type BohrAtom = ReturnType; export default BohrAtom;