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