import { Dialog } from '@jupyterlab/apputils'; import { Widget } from '@lumino/widgets'; import { Git } from '../tokens'; /** * A widget form containing a text block and a checkbox, * can be used as a Dialog body. */ export declare class CheckboxForm extends Widget implements Dialog.IBodyWidget { constructor(textBody: string, checkboxLabel: string); private createBody; getValue(): Git.ICheckboxFormValue; private _checkbox; }