import './style.css'; import { AxiosError } from 'axios'; import { FC } from 'react'; interface Props { onClose: () => void; onRegister: () => void; onGetProfileDataSuccess: (res: any) => void; onGetProfileDataError: (e: AxiosError) => void; showPoweredByImage?: boolean; } export declare const RegisterModal: FC; export {};