import type { EthAddress } from "..";
export type SSOIdentity = {
    accountType: "web2" | "web3";
    email: string | null;
    etherAddress: EthAddress;
    etherManagedPrivateKey: string | null;
    etherPreviousAddresses: string[];
    etherLoginAddress: string | null;
    phoneNumber: string | null;
    username: string;
};
//# sourceMappingURL=types.d.ts.map