import { ChangeDetectorRef, OnInit } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { Observable } from 'rxjs'; import { YapVisibility, YapVisibilityType } from './share.model'; import * as i0 from "@angular/core"; export declare class YapShareComponent implements ControlValueAccessor, OnInit { private _cd; private _onChange; private _onTouched; _disabled: boolean; YapVisibilityType: typeof YapVisibilityType; value?: YapVisibility; labelProperty: string; valueProperty: string; users$: Observable | null; visibilityTypes: { label: string; value: string; icon: string; }[]; constructor(_cd: ChangeDetectorRef); ngOnInit(): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; writeValueUsers(obj: any[]): void; writeValueType(type: YapVisibilityType): void; writeValue(obj: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }