import { Options } from '../../types/options.types';
import { GobiController } from '../../utils/controller';
export declare class BubblesApp {
    private readonly container;
    constructor(config: Partial<Options>, callback?: (controller: GobiController) => void);
}
export declare function renderBubbles(config: Options, callback?: (controller: GobiController) => void): BubblesApp;
