import { EventEmitter } from '@angular/core'; import * as common from 'schema-based-json-editor'; export declare class BooleanEditorComponent { schema: common.BooleanSchema; initialValue: boolean; title?: string; updateValue: EventEmitter>; theme: common.Theme; icon: common.Icon; locale: common.Locale; onDelete: EventEmitter; readonly?: boolean; required?: boolean; hasDeleteButton: boolean; value?: boolean; buttonGroupStyle: string; ngOnInit(): void; onChange(): void; toggleOptional(): void; readonly isReadOnly: boolean | undefined; readonly hasDeleteButtonFunction: boolean; readonly titleToShow: string; readonly className: string; }