import type { AId, ProfileObject, RealVer, Verification } from "@raytio/types"; type Props = { aId: AId; apiUrl: string; verifications: Verification[]; profileObjects: ProfileObject[]; controller?: AbortController; }; /** * Given a list of verifications and decrypted profile objects, this function calls * the Raytio API to verify the credibility of these verifications, returning only valid * verifications. * * ❗ prefer `getOwnRealVerifications` if the data to be verified belongs to the current user. * * @returns a list of fileNames/values that are verified. */ export declare const getSomeoneElsesRealVerifications: ({ aId, apiUrl, verifications, profileObjects, controller, }: Props) => Promise; export {};