import { FunctionComponent } from "react"; import { PasswordInputProps } from "./password-input"; import PasswordInputFeedback from "./password-input-feedback"; interface PasswordInputInterface extends FunctionComponent { (props: PasswordInputProps): JSX.Element; Feedback: typeof PasswordInputFeedback; } declare const PasswordInput: PasswordInputInterface; export default PasswordInput;