import { SelectedVal } from "../SelectedVal";
import { AbstractWidget, WidgetValue } from "./AbstractWidget";
import { HTMLComponent } from '../HtmlComponent';
export declare class BooleanWidgetValue implements WidgetValue {
    value: {
        label: string;
        boolean: boolean;
    };
    key(): string;
    constructor(v: BooleanWidgetValue["value"]);
}
export declare class BooleanWidget extends AbstractWidget {
    constructor(parentComponent: HTMLComponent, startClassVal: SelectedVal, objectPropVal: SelectedVal, endClassVal: SelectedVal);
    render(): this;
    parseInput(input: BooleanWidgetValue["value"]): BooleanWidgetValue;
}
