import { ChangeDetectorRef, ElementRef, Renderer2 } from "@angular/core"; import { NgControl } from "@angular/forms"; import { SpsFormControlComponent } from "../forms/sps-form-control.abstract.component"; export declare class SpsCheckboxComponent extends SpsFormControlComponent { protected _changeDetector: ChangeDetectorRef; static readonly displayName = "sps-checkbox"; static readonly props: { label: string; indeterminate: string; inline: string; }; label: string; indeterminate: boolean; inline: boolean; readonly spsCustomControlClass = true; readonly spsCustomCheckboxClass = true; readonly noLabelClass: boolean; checked: boolean; inputElement: ElementRef; constructor(el: ElementRef, renderer: Renderer2, ngControl: NgControl, _changeDetector: ChangeDetectorRef); _updateChecked(checked: boolean): void; }