import { Widget } from '../decorators/construct'; import './boolean-bindings.pcss'; export declare class BooleanBindings implements Widget { bool: boolean; init: (el: Element) => void; onNewValueClick(): void; markupAll(): string; yesno: (bool: boolean) => "yes" | "no"; }