import React from "react";
import "../style/input-box.css";
import "../style/typo.css";
export interface Ui89InputPasswordProps {
    value?: any;
    placeholder?: string;
    onChange?: (value: any) => void;
}
export declare function Ui89InputPassword({ value, placeholder, onChange, }: Ui89InputPasswordProps): React.JSX.Element;
