import { ChangeDetectorRef, ElementRef, OnInit, Renderer2 } from "@angular/core"; import { NgControl } from "@angular/forms"; import { SpsFormControlComponent } from "../forms/sps-form-control.abstract.component"; export declare class SpsToggleComponent extends SpsFormControlComponent implements OnInit { protected _changeDetector: ChangeDetectorRef; static readonly displayName = "sps-toggle"; static readonly props: { statusLabel: string; description: string; large: string; }; statusLabel: [string, string]; description: string; large: boolean; statusLabelID: string; descriptionID: string; activated: boolean; inputElement: ElementRef; readonly currentStatusLabel: string; constructor(el: ElementRef, renderer: Renderer2, ngControl: NgControl, _changeDetector: ChangeDetectorRef); ngOnInit(): void; toggle(): void; }