import type { ChemicalElement, SplitLayout, TileSegment } from './'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = Omit, `onclick`> & { element: ChemicalElement; segments?: TileSegment[]; show_symbol?: boolean; show_number?: boolean; show_name?: boolean; symbol_style?: string; active?: boolean; href?: string; text_color?: string; backdrop?: string; float_fmt?: string; label?: string; split_layout?: SplitLayout; onclick?: (data: { element: ChemicalElement; event: MouseEvent; }) => void; }; declare const ElementTile: import("svelte").Component<$$ComponentProps, {}, "">; type ElementTile = ReturnType; export default ElementTile;