import { Panel } from '@lumino/widgets'; export declare abstract class InputWithLabelWidget extends Panel { private readonly labelWidget; private readonly inputWidget; private _value; protected constructor(value: string); abstract get LABEL_TEXT(): string; abstract get LABEL_TITLE(): string; abstract get INPUT_TITLE(): string; abstract get INPUT_PLACEHOLDER(): string; get value(): string; set value(value: string); disableInput(): void; enableInput(): void; private createLabel; private createInput; private onValueChanged; }