import { AfterViewInit, ElementRef, Injector, OnDestroy, Renderer2 } from '@angular/core'; import { ControlContainer } from '@angular/forms'; import { NgtControlValueAccessor } from '../../../../base/ngt-control-value-accessor'; import { NgtStylizableDirective } from '../../../../directives/ngt-stylizable/ngt-stylizable.directive'; import { NgtStylizableService } from '../../../../services/ngt-stylizable/ngt-stylizable.service'; import { NgtFormComponent } from '../ngt-form/ngt-form.component'; import { NgtSectionComponent } from '../../../ngt-section/ngt-section.component'; import { NgtRadioButtonContainerComponent } from './ngt-radio-button-container/ngt-radio-button-container.component'; import { NgtModalComponent } from '../../../ngt-modal/ngt-modal.component'; import * as i0 from "@angular/core"; export declare class NgtRadioButtonComponent extends NgtControlValueAccessor implements AfterViewInit, OnDestroy { private renderer; private ngtStylizableDirective; private ngtForm; private ngtSection; private ngtModal; private ngtRadioButtonContainer; protected injector: Injector; formContainer: ControlContainer; element: ElementRef; label: string; name: string; shining: boolean; isSelectable: boolean; isDisabled: boolean; selectedHexColor: string; helpTitle: string; helpTextColor: string; helpText: string; helperReverseYPosition: boolean; helperAutoXReverse: boolean; ngtStyle: NgtStylizableService; private subscriptions; constructor(renderer: Renderer2, ngtStylizableDirective: NgtStylizableDirective, ngtForm: NgtFormComponent, ngtSection: NgtSectionComponent, ngtModal: NgtModalComponent, ngtRadioButtonContainer: NgtRadioButtonContainerComponent, injector: Injector, formContainer: ControlContainer); ngAfterViewInit(): void; ngOnDestroy(): void; change(value: boolean): void; onNativeChange(value: boolean): void; disabled(): boolean; getStyle(): string; private isDisabledByParent; private destroySubscriptions; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }