import { AuthType } from '@particle-network/auth-core';
import React from 'react';
export interface IAccountInfo {
    type: AuthType;
    icon: string;
    name: string;
    value: string;
    id?: string;
    isOriginal?: boolean;
}
declare const LoginAccountBind: (props: any) => React.JSX.Element;
export default LoginAccountBind;
