/// import { Form } from '../@Types'; interface LoginPageProps { form: Form; } /** * Displays the specific login component depending on the url * @returns the respective component */ declare function LoginPage({ form }: LoginPageProps): JSX.Element; export default LoginPage;