UNPKG

molstar

Version:

A comprehensive macromolecular library.

26 lines (25 loc) 821 B
/** * Copyright (c) 2022 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose <alexander.rose@weirdbyte.de> */ /// <reference types="react" /> import { CollapsableControls, PurePluginUIComponent } from '../base'; import { MagicWandSvg } from '../controls/icons'; export declare class StructureQuickStylesControls extends CollapsableControls { defaultState(): { isCollapsed: boolean; header: string; brand: { accent: "gray"; svg: typeof MagicWandSvg; }; }; renderControls(): JSX.Element; } export declare class QuickStyles extends PurePluginUIComponent { default(): Promise<void>; illustrative(): Promise<void>; stylized(): Promise<void>; render(): JSX.Element; }