import type { ProfileObject, RealVer, UId, Verification } from "@raytio/types"; /** * Given a list of verifications and decrypted profile objects, this function * locally verifies the credibility of the signatures in the verifications. * * This function does NOT call the API, except to fetch the public key. * @returns a list of authentic RealVer */ export declare const getOwnRealVerifications: ({ verifications, profileObjects, userId, }: { verifications: Verification[]; profileObjects: ProfileObject[]; userId: UId; }) => Promise;