/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import { Store } from '@ngrx/store'; import { MagFrameState } from 'ng-stalk/core/frame-store'; import { MagInitConfig, MagSupport } from 'ng-stalk/core/model'; import { MagConfigService } from 'ng-stalk/core/service'; import { MagTimeZone } from 'ng-stalk/core/types'; import { NzSafeAny } from 'ng-zorro-antd/core/types'; import { Observable } from 'rxjs'; import { ZoneGroup } from './zone-group'; import * as i0 from "@angular/core"; export declare class TimezoneSelector2Component implements OnInit, OnDestroy { private _formBuilder; private magConfigService; private magSupport; private _store; private destroy$; selectEvt: EventEmitter; modelForm: FormGroup; timezoneInfo: MagTimeZone; timezoneList: NzSafeAny[]; zoneGroupList: ZoneGroup[]; zoneGroups: Observable; constructor(_formBuilder: FormBuilder, magConfigService: MagConfigService, magSupport: MagSupport, _store: Store); createForm(model: MagTimeZone): FormGroup; ngOnDestroy(): void; ngOnInit(): void; setTimezone(e: NzSafeAny): void; setTimezoneId(timezoneId: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }