/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { FluentUIComponents } from '@msrvida/fluentui-react-cdn-typings'; import { SandDance } from '@msrvida/sanddance-react'; import * as React from 'react'; import * as ReactDOM from 'react-dom'; /** * References to dependency libraries. */ export interface Base { fluentUI: FluentUIComponents; react: typeof React; reactDOM: typeof ReactDOM; } export declare const base: Base; /** * Specify the dependency libraries to use for rendering. * @param fluentUI FluentUI React library. * @param react React library. * @param vega Vega library. * @param deck @deck.gl/core library. * @param layers @deck.gl/layers library. * @param luma @luma.gl/core library. */ export declare function use(fluentUI: FluentUIComponents, react: typeof React, reactDOM: typeof ReactDOM, vega: SandDance.VegaMorphCharts.types.VegaBase): void;