import type { VerifyApplicationResponse } from '../types/apiTypes'; import type { GetIdSdk } from '@get-id/react-native-sdk'; type VerifyApplicationProps = { sdk: GetIdSdk; }; type VerifyApplicationResult = Promise; declare const verifyApplication: ({ sdk, }: VerifyApplicationProps) => VerifyApplicationResult; export default verifyApplication; //# sourceMappingURL=verifyApplication.d.ts.map