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<IBChartInstance>;
}
export declare const IBChartGlobalInstance: IBChartGlobalStatic;
