import type { ChemicalElement, ElementCategory } from './element/types'; import { type ThemeMode } from './theme'; export declare const selected: { category: ElementCategory | null; element: ChemicalElement | null; heatmap_key: keyof ChemicalElement | null; }; export declare const colors: { category: { [x: string]: string; }; element: { [x: string]: string; }; }; export declare const theme_state: { mode: ThemeMode; };