import type { ChemicalElement, Unit } from '../modules/science';
import type { LocaleEntry } from './definitions';
/**
 * The possible definitions related to science.
 */
export declare type ScienceDefinitions = LocaleEntry<{
    /**
     * Some science units.
     */
    unit: readonly Unit[];
    /**
     * Some periodic table element information.
     */
    chemicalElement: readonly ChemicalElement[];
}>;
