import * as Layer from '.'; import { LayerOptions } from '../types'; export * from './base'; export * from './combine'; export * from './common'; export * from './display'; export * from './geography'; export * from './helpers'; export * from './normal'; export * from './relation'; export interface LayerDict { arc: Layer.LayerArc; auxiliary: Layer.LayerAuxiliary; axis: Layer.LayerAxis; basemap: Layer.LayerBasemap; brush: Layer.LayerBrush; candle: Layer.LayerCandle; carousel: Layer.LayerCarousel; chord: Layer.LayerChord; dashboard: Layer.LayerDashboard; flopper: Layer.LayerFlopper; force: Layer.LayerForce; heatmap: Layer.LayerHeatmap; interactive: Layer.LayerInteractive; grid: Layer.LayerGrid; legend: Layer.LayerLegend; line: Layer.LayerLine; mark: Layer.LayerMark; matrix: Layer.LayerMatrix; odLine: Layer.LayerODLine; pack: Layer.LayerPack; radar: Layer.LayerRadar; radial: Layer.LayerRadial; rect: Layer.LayerRect; sankey: Layer.LayerSankey; scatter: Layer.LayerScatter; text: Layer.LayerText; treemap: Layer.LayerTreemap; tree: Layer.LayerTree; wave: Layer.LayerWave; } export declare const LayerDict: { arc: typeof Layer.LayerArc; auxiliary: typeof Layer.LayerAuxiliary; axis: typeof Layer.LayerAxis; basemap: typeof Layer.LayerBasemap; brush: typeof Layer.LayerBrush; candle: typeof Layer.LayerCandle; carousel: typeof Layer.LayerCarousel; chord: typeof Layer.LayerChord; dashboard: typeof Layer.LayerDashboard; flopper: typeof Layer.LayerFlopper; force: typeof Layer.LayerForce; heatmap: typeof Layer.LayerHeatmap; interactive: typeof Layer.LayerInteractive; grid: typeof Layer.LayerGrid; legend: typeof Layer.LayerLegend; line: typeof Layer.LayerLine; mark: typeof Layer.LayerMark; matrix: typeof Layer.LayerMatrix; odLine: typeof Layer.LayerODLine; pack: typeof Layer.LayerPack; radar: typeof Layer.LayerRadar; radial: typeof Layer.LayerRadial; rect: typeof Layer.LayerRect; sankey: typeof Layer.LayerSankey; scatter: typeof Layer.LayerScatter; text: typeof Layer.LayerText; treemap: typeof Layer.LayerTreemap; tree: typeof Layer.LayerTree; wave: typeof Layer.LayerWave; }; export declare const registerCustomLayer: >(key: string, klass: Newable]>) => void;