import { User as PrivyUser } from "@privy-io/react-auth";
import { LinkedAccountWithMetadata, LoginMethod } from "../../types/adapter";
export type PrivyAuthInfo = {
    user: PrivyUser;
    isNewUser: boolean;
    wasAlreadyAuthenticated: boolean;
    loginMethod: LoginMethod;
    linkedAccount: LinkedAccountWithMetadata;
    authToken: string;
};
//# sourceMappingURL=privyauthinfo.d.ts.map