import type { SVGAttributes } from 'svelte/elements'; type $$ComponentProps = SVGAttributes & { protons: number; neutrons: number; radius?: number; size?: number; proton_color?: string; neutron_color?: string; stroke?: string; proton_label?: string; neutron_label?: string; text_color?: string; symbol?: string; }; declare const Nucleus: import("svelte").Component<$$ComponentProps, {}, "radius">; type Nucleus = ReturnType; export default Nucleus;