import React from "react"; import type { LoginCredentials } from "../../types"; interface Properties { email?: string; loading?: boolean; termsAndConditions?: React.ReactNode; handleSubmit: (credentials: LoginCredentials) => void; } export declare const SignupForm: ({ email, loading, termsAndConditions, handleSubmit, }: Properties) => React.JSX.Element; export {}; //# sourceMappingURL=SignupForm.d.ts.map