/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import * as React from 'react'; import { Legend as LegendData, ScaleLegend as ScaleLegendData, TableLegend as TableLegendData } from '../../mol-util/legend.js'; export type LegendProps = { legend: L; }; export type Legend = React.ComponentClass>; export declare function legendFor(legend: LegendData): Legend | undefined; export declare class ScaleLegend extends React.PureComponent> { render(): import("react/jsx-runtime").JSX.Element; } export declare class TableLegend extends React.PureComponent> { render(): import("react/jsx-runtime").JSX.Element; }