import { FC } from "react"; import type { LoginFormParams } from "./LoginForm.types"; /** * @function * @name LoginForm * @return smart component for the login form with styles. It has 2 inputs * @author: Juan Sebastian Perea [Juanse1595] (https://github.com/Juanse1595) * @author: Juan David Avila Caycedo [JuanDAC] (https://github.com/JuanDAC) * for the email and the password. Its logic is stored in the custom hook * LoginForm.hooks.js in this same directory. */ export declare const LoginForm: FC;