import { AfterViewInit, OnInit } from '@angular/core'; import { NgOtpInputComponent, NgOtpInputConfig } from 'ng-otp-input'; import { PinInputMetadata } from './types'; import * as i0 from "@angular/core"; export declare class PinInputComponent implements OnInit, AfterViewInit { pinCode: NgOtpInputComponent | undefined; /** * Input configuration object. * @type {PinInputMetadata} * @property control - The Angular FormControl for the PIN input. * @property length - Number of digits in PIN (default: 5). */ props: PinInputMetadata; private i18n; /** * Nombre accesible del grupo de cajas del PIN. Deriva de `props.label`; si está * vacío usa el default i18n `PinInput.inputGroupLabel`. Como el componente no * renderiza un label visible, se expone vía `aria-label` (no `aria-labelledby`). */ get ariaLabel(): string; codeLength: number; otpInputConfig: NgOtpInputConfig; constructor(); ngOnInit(): void; ngAfterViewInit(): void; reset(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }