import { Dialog } from '@jupyterlab/apputils'; export declare class Modal extends Dialog { submitHandler: (event: MouseEvent | KeyboardEvent) => void; constructor({ submitHandler, ...options }: { [x: string]: any; submitHandler: any; }); protected _evtClick(event: MouseEvent): void; protected _evtKeydown(event: KeyboardEvent): void; }