export default function useVerifyLivenessAPI({ outputEncryptionSettings, selfieType, enabledServices, apiCredentials, }: { outputEncryptionSettings: any; selfieType: any; enabledServices: any; apiCredentials: any; }): { verifyLiveness: ({ videos, images, metadata }: any) => Promise<{ uploadedImages: any[]; faceLivenessResult: any; portraitResult: any; } | { uploadedImages?: undefined; faceLivenessResult?: undefined; portraitResult?: undefined; }>; };