import { FC, InputHTMLAttributes } from "react"; //#region src/components/form/password-input/password-input.d.ts type Props = { invalid?: boolean; showLabel?: string; hideLabel?: string; } & Omit, 'type' | 'className' | 'style'>; declare const PasswordInput: FC; //#endregion export { PasswordInput };