import { IBChartInstance } from './interface'; export declare class IBChartGlobalStatic { private _name; constructor(name?: string); get name(): string; get global(): any; setGlobalName(name: string): void; create(options: any): Promise; } export declare const IBChartGlobalInstance: IBChartGlobalStatic;