import { AfterViewInit, QueryList, OnChanges, SimpleChanges } from '@angular/core'; import { GasInputLabelComponent } from '../label/gas-input-label.component'; import { GasInputFieldComponent } from '../field/gas-input-field.component'; import { GasForm } from '../../gas-form.namespace'; /** @see https://www.figma.com/file/yqBeq1MiGfpdN62SvmA8tg/RTLABS_GAS_DS_1?node-id=589%3A5592 */ export declare class GasInputWrapperComponent implements AfterViewInit, OnChanges { type: GasForm.InputState; inputComponent: GasInputFieldComponent; inputLabelComponents: QueryList; private typeSubject$; private initedSubject$; constructor(); ngAfterViewInit(): void; ngOnChanges(changes: SimpleChanges): void; private initTypeHandler; }