import { AuthType } from '@particle-network/auth-core';
import React from 'react';
interface Props {
    supportAuthTypes: AuthType[];
    preferredAuthType?: AuthType;
    onPreferredAuthTypeChange?: (authType: AuthType) => void;
    thirdpartyAuthLogin: (authType: AuthType) => void;
}
declare const SocialLogin: (props: Props) => React.JSX.Element;
export default SocialLogin;
