import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
import { AbstractControl } from '@angular/forms';
import { PoInputGeneric } from '../po-input-generic/po-input-generic';
/**
* @docsExtends PoInputBaseComponent
*
* @example
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
export declare class PoInputComponent extends PoInputGeneric implements OnChanges {
inp: ElementRef;
id: string;
constructor();
ngOnChanges(changes: SimpleChanges): void;
extraValidation(c: AbstractControl): {
[key: string]: any;
};
}