/// <reference types="react" />
import { IInitResult } from "./types";
type TSciChartGroupContext = {
    groupInitialized: boolean;
    charts: Map<any, {
        isInitialized: boolean;
        initResult: IInitResult | null;
    }>;
    addChartToGroup: (chart: any, isInitialized: boolean, initResult: IInitResult | null) => void;
    removeChartFromGroup: (chart: any) => void;
};
/** The context provided within a {@link SciChartGroup} */
export declare const SciChartGroupContext: import("react").Context<TSciChartGroupContext | undefined>;
export {};
//# sourceMappingURL=SciChartGroupContext.d.ts.map