import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { InputMetadata } from '../../types'; import * as i0 from "@angular/core"; export declare class PasswordInputComponent implements OnInit, OnChanges { private presets; private i18n; constructor(); /** * Preset name to apply. Presets define reusable input configurations * that can be registered at app level via provideValtechPresets(). * * @example * */ preset?: string; /** * Input configuration object. Values here override preset values. * @type {InputMetadata} * @property control - The Angular FormControl for the input. * @property placeholder - The placeholder text. */ props: Partial; /** * Resolved props after merging preset + explicit props. */ resolvedProps: InputMetadata; hidePassword: boolean; /** Aria-label del botón mostrar/ocultar según el estado de visibilidad. */ toggleLabel(): string; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; /** * Merge preset configuration with explicit props. * Explicit props take precedence over preset values. */ private resolveProps; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }