import { ColumnWidth, ElementProps, InputWidth } from "../../../types/shared.mjs"; import { Component } from "../../../internal/factory/factory.mjs"; import { BaseFormElementProps } from "../../core/form-group/FormGroup.mjs"; import { PasswordInputTranslations } from "nhsuk-frontend"; //#region src/components/form-elements/password-input/PasswordInput.d.ts type PasswordInputProps = { width?: InputWidth | ColumnWidth; i18n?: PasswordInputTranslations; } & BaseFormElementProps & ElementProps<'input', 'size' | 'as' | 'type'>; declare const PasswordInput$1: Component<{ props: PasswordInputProps; ref: HTMLInputElement; }>; //#endregion export { PasswordInput$1 as PasswordInput, PasswordInputProps };