import { TSciChart } from "../../types/TSciChart"; import { TSciChartSurfaceCanvases } from "../../types/TSciChartSurfaceCanvases"; import { IThemeProvider } from "../Themes/IThemeProvider"; import { I2DSurfaceOptions } from "./I2DSurfaceOptions"; import { SciChartSurface, TWebAssemblyChart } from "./SciChartSurface"; import { TSurfaceConstructor } from "./createMaster"; /** @ignore */ export declare const createSingleInternal: (divElement: string | HTMLDivElement, surfaceConstructor: TSurfaceConstructor, options?: I2DSurfaceOptions) => Promise>; /** @ignore */ export declare const initDrawEngineSingleChart: (wasmContext: TSciChart, canvases: TSciChartSurfaceCanvases, resolve: (value: TWebAssemblyChart) => void, theme: IThemeProvider, surfaceConstructor: TSurfaceConstructor) => void;