import React from 'react'; import { ContainerComponentProps } from './types/common'; export interface SocialLoginProps extends ContainerComponentProps { email?: boolean; google?: boolean; facebook?: boolean; apple?: boolean; onEmailSignIn?: () => void; onGoogleSignIn?: () => void; onFacebookSignIn?: () => void; onAppleSignIn?: () => void; } declare const SocialLogin: React.FC; export default SocialLogin;