import { FieldVerification, type NId, POVerification, type ProfileObject, type ProfileObjectForUpload, type RealVer, type Schema, type VerificationProvider } from "@raytio/types"; export type VerDetails = { sourceNId?: NId; verifiers: VerificationProvider[]; /** field only present for expired verifications */ expiryDate?: Date; }; /** * Determines the verification status of a profile object, and its individual fields. */ export declare function getPOVerification({ PO, schema, realVers, }: { PO: ProfileObject | ProfileObjectForUpload; schema: Schema; realVers: RealVer[]; }): { status: POVerification; details: VerDetails; fieldVerifications: Record; };