import { ISciChartSurfaceBase, TSurfaceDefinition } from "scichart";
export declare const createChartRoot: () => HTMLDivElement | null;
export declare function createChartFromConfig<TSurface extends ISciChartSurfaceBase>(config: string | TSurfaceDefinition): (chartRoot: string | HTMLDivElement) => Promise<{
    sciChartSurface: TSurface;
}>;
