import { BoxModel as JupyterBoxModel, BoxView as JupyterBoxView } from '@jupyter-widgets/controls'; export declare class SparkUIModel extends JupyterBoxModel { private spark_comm; initialize(attributes: any, options: { model_id: string; comm?: any; widget_manager: any; }): void; defaults(): { _model_name: string; _view_name: string; _model_module: string; _view_module: string; _model_module_version: any; _view_module_version: any; }; _handle_comm_msg(msg: any): Promise; } export declare class SparkUIView extends JupyterBoxView { private comm; initialize(parameters: any): void; render(): void; createWidget(): Promise; }