import { type ITouchEvent } from "@tarojs/components"; import type { ViewProps } from "@tarojs/components/types/View"; import { type ReactNode } from "react"; import { type PasswordInputFeedbackProps } from "./password-input-feedback"; export interface PasswordInputProps extends ViewProps { value?: string; length?: number; gutter?: number; mask?: boolean; focused?: boolean; focus?: boolean; feedback?: ReactNode | PasswordInputFeedbackProps; onFocus?(event: ITouchEvent): void; } declare function PasswordInput(props: PasswordInputProps): JSX.Element; export default PasswordInput;