import type { IEventDetail } from '@breadstone/mosaik-elements'; /** * Represents the event detail for password revealed events. * * @public */ export interface IPasswordRevealedEventDetail extends IEventDetail { } /** * Event fired when a password is revealed. * * @public */ export type PasswordRevealedEvent = CustomEvent; /** * Represents the event detail for password concealed events. * * @public */ export interface IPasswordConcealedEventDetail extends IEventDetail { } /** * Event fired when a password is concealed. * * @public */ export type PasswordConcealedEvent = CustomEvent; declare global { interface HTMLElementEventMap { passwordRevealed: PasswordRevealedEvent; passwordConcealed: PasswordConcealedEvent; } } //# sourceMappingURL=PasswordEvents.d.ts.map