import './style.css'; import { AxiosError } from 'axios'; import { FC } from 'react'; interface ISignupProps { onClose: () => void; onLogin: () => void; onRegisterSuccess: (res: any) => void; onRegisterError: (e: AxiosError, email: string) => void; showPoweredByImage?: boolean; } export declare const SignupModal: FC; export {};