import { ViewProps } from "@tarojs/components/types/View"; import { PropsWithChildren } from "react"; export declare type PasswordInputFeedbackColor = "primary" | "info" | "success" | "warning" | "danger"; export interface PasswordInputFeedbackProps extends PropsWithChildren { color?: PasswordInputFeedbackColor; } declare function PasswordInputFeedback(props: PasswordInputFeedbackProps): JSX.Element; export default PasswordInputFeedback;