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