import { OnChanges, SimpleChanges } from '@angular/core';
import { AbstractControl } from '@angular/forms';
import { PoInputGeneric } from '../po-input-generic/po-input-generic';
/**
* @docsExtends PoInputBaseComponent
*
* @description
* O `po-login` é um input específico para login. Já possui tipo, estilo e ícone predefinidos.
*
* @example
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
export declare class PoLoginComponent extends PoInputGeneric implements OnChanges {
id: string;
type: string;
private _noAutocompleteLogin?;
set noAutocomplete(value: boolean);
get noAutocomplete(): boolean;
get autocomplete(): string;
constructor();
ngOnChanges(changes: SimpleChanges): void;
extraValidation(c: AbstractControl): {
[key: string]: any;
};
}