import { OnInit } from '@angular/core'; import { InputMetadata } from '../../types'; import * as i0 from "@angular/core"; export declare class HintComponent implements OnInit { /** * Input configuration object. * @type {InputMetadata} * @property control - The Angular FormControl for the input. * @property errors - The error messages mapping. */ props: InputMetadata; /** * Id del contenedor del hint. Lo pasa `val-form` para enlazar el input con el * mensaje de error vía `aria-describedby`. */ id?: string; /** * Si el hint representa un error (vs un hint informativo). Hoy `val-hint` * siempre muestra errores de validación, así que por defecto es `true`. */ isError: boolean; private i18n; constructor(); ngOnInit(): void; get shouldShowErrors(): boolean; get Errors(): string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }