import { AfterViewInit, OnInit, ElementRef } from '@angular/core'; import { ACDataType } from '../../../common/data-types/ac-data-types'; import { ACBasePrimitive } from '../base/ac-base-primitive'; export declare class ACCheckboxComponent extends ACBasePrimitive implements AfterViewInit, OnInit { private elementRef; align: string; disabled: boolean; hasAccess: boolean; text: string; info: string; roles: string; _acValue: ACDataType; set acValue(val: ACDataType); get acValue(): ACDataType; get valid(): boolean; get typeName(): string; get Value(): boolean; get displayValue(): string; private IsACBool; private SetACBool; update(val: boolean): void; constructor(elementRef: ElementRef); ngOnInit(): void; ngAfterViewInit(): void; changed(): void; }