///
///
import './index.css';
import { AuthType } from '../../auth';
interface AuthProps {
showType?: 'fullscreen' | 'dialog';
type: AuthType;
authImage?: string;
authInfoText?: string;
authPhoneText?: string;
authInfoCancelText?: string;
authPhoneCancelText?: string;
dialogTitle?: string;
dialogText?: string[];
onBindUserInfo: Function;
onBindPhone: Function;
onCancel: Function;
}
export default function Auth(props: AuthProps): JSX.Element;
export {};