import type { FaceLivenessSettings, FaceLivenessResult, FaceLivenessError } from '../types'; /** * @deprecated This package is deprecated since version 4.0.0 and will no longer receive updates. * Please use @caf.io/react-native-face-liveness instead. * See https://docs.caf.io/caf-sdk/react-native/getting-started-with-the-sdk */ declare const useFaceLiveness: (settings?: FaceLivenessSettings) => { result: FaceLivenessResult | null; error: FaceLivenessError | null; failure: import("../types").FaceLivenessFailure | null; cancelled: boolean; isLoading: boolean; }; /** * @deprecated This package is deprecated since version 4.0.0 and will no longer receive updates. * Please use @caf.io/react-native-face-liveness instead. * See https://docs.caf.io/caf-sdk/react-native/getting-started-with-the-sdk */ declare const startFaceLiveness: (mobileToken: string, personId: string) => void; export { startFaceLiveness, useFaceLiveness }; //# sourceMappingURL=useFaceLiveness.d.ts.map