import { AfterContentChecked, ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from "@angular/core"; import { EButtonType } from "../../data-types/button.enum"; import { EInputStyleType } from "../../data-types/input-style.enum"; import { ETextareaStyleType } from "../../data-types/textarea-style.enum"; import { TranslateService } from "@ngx-translate/core"; import { CoworkingService } from "../../services/coworking.service"; import { FormGroup } from "@angular/forms"; import { Router } from "@angular/router"; import { Store } from "@ngrx/store"; import { IAppState } from "../../store/state/app.state"; import * as i0 from "@angular/core"; export declare class CoworkingInfoComponent implements OnInit, OnDestroy, AfterContentChecked { private cdRef; private router; private translate; private coworkingService; private _store; form: FormGroup; location: EventEmitter; EInputStyleType: typeof EInputStyleType; EButtonType: typeof EButtonType; ETextareaStyleType: typeof ETextareaStyleType; private coworkingId; ready: boolean; daysOfWeek: any[]; constructor(cdRef: ChangeDetectorRef, router: Router, translate: TranslateService, coworkingService: CoworkingService, _store: Store); ngOnInit(): Promise; ngAfterContentChecked(): void; get isEditingInfo(): boolean; setLocation(currentLocation: any): void; _setLocation(location: any): void; updateCoworking(): Promise; private formGeneralInfoData; private setHours; private setMedia; private formMedia; goBack(): void; get isDisabledForm(): boolean; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDef; static ɵcmp: i0.ɵɵComponentDefWithMeta; }