/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Unit, ElementIndex } from '../../mol-model/structure.js'; import type { SizeTheme } from '../size.js'; import { ParamDefinition as PD } from '../../mol-util/param-definition.js'; import { ThemeDataContext } from '../../mol-theme/theme.js'; export declare const PhysicalSizeThemeParams: { scale: PD.Numeric; }; export type PhysicalSizeThemeParams = typeof PhysicalSizeThemeParams; export declare function getPhysicalSizeThemeParams(ctx: ThemeDataContext): { scale: PD.Numeric; }; export declare function getPhysicalRadius(unit: Unit, element: ElementIndex): number; /** * Create attribute data with the physical size of an element, * i.e. vdw for atoms and radius for coarse spheres */ export declare function PhysicalSizeTheme(ctx: ThemeDataContext, props: PD.Values): SizeTheme; export declare const PhysicalSizeThemeProvider: SizeTheme.Provider;