import { AfterViewInit, EventEmitter, OnInit } from '@angular/core'; import { FormItemComponentInterface } from '../../../../interface/component'; import { IFormItemsControls } from '../../../../interface/form-structure'; import { HttpFormDataService } from '../../../../services/services'; import { IHttpReturnParam, IHttpSetting } from '../../../../interface/dataset-params'; export declare class CurrencyComponent implements OnInit, AfterViewInit, FormItemComponentInterface { private httpService; prop: IFormItemsControls; setting: IHttpSetting; currencyItemData: IHttpReturnParam[]; datasetId: number; formId: number; keyOnEnter: EventEmitter; mask: any; constructor(httpService: HttpFormDataService); ngOnInit(): void; getMask(): { mask: any; }; ngAfterViewInit(): void; }