import { BpInput } from '@blueprintui/components/input'; /** * ```typescript * import '@blueprintui/components/include/password.js'; * ``` * * ```html * * * * message text * * ``` * * @summary The password input component is used to accept password input from users. It is a text input field with a toggle button to show or hide the password. * @element bp-password * @since 1.0.0 * @slot prefix - slot for prefix text or icons * @slot suffix - slot for suffic text or icons * @event {InputEvent} input - occurs when the value changes * @event {InputEvent} change - occurs when the value changes */ export declare class BpPassword extends BpInput { #private; /** Specifies the input type as password for secure text entry */ accessor type: string; /** Provides internationalization strings for translated text content */ accessor i18n: { copy: string; sort: string; none: string; ascending: string; descending: string; expand: string; close: string; resize: string; filter: string; loading: string; show: string; hide: string; previous: string; next: string; first: string; last: string; today: string; browse: string; removeFile: string; files: string; resizeColumn: string; closeDetails: string; noData: string; action: string; dropTarget: string; firstPage: string; previousPage: string; nextPage: string; lastPage: string; pageSize: string; pagination: string; increment: string; decrement: string; }; private accessor showPassword; static get styles(): CSSStyleSheet[]; protected get suffixTemplate(): import("lit").TemplateResult<1>; }