package com.google.android.ump; import android.app.Activity; import androidx.annotation.Nullable; import androidx.annotation.RecentlyNonNull; /* loaded from: classes3.dex */ public interface ConsentForm { public interface OnConsentFormDismissedListener { void onConsentFormDismissed(@Nullable FormError formError); } void show(@RecentlyNonNull Activity activity, @RecentlyNonNull OnConsentFormDismissedListener onConsentFormDismissedListener); }