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