import React from "react"; import type { LoginCredentials, SignInUpPromise } from "../../types"; interface IProperties { loading?: boolean; showForgotPasswordLink?: boolean; showLoginLink?: boolean; termsAndConditions?: React.ReactNode; handleSubmit?: (formData: LoginCredentials) => void; onSignupFailed?: (error: Error) => void; onSignupSuccess?: (user: SignInUpPromise) => void; } export declare const SignupWrapper: React.FC; export {}; //# sourceMappingURL=SignupWrapper.d.ts.map