package com.revenuecat.purchases.ui.revenuecatui.utils;

/* JADX INFO: loaded from: classes3.dex */
public interface Resumable {

    public static final class DefaultImpls {
        public static void invoke(Resumable resumable, boolean z6) {
            resumable.resume(z6);
        }

        public static /* synthetic */ void invoke$default(Resumable resumable, boolean z6, int i6, Object obj) {
            if (obj != null) {
                throw new UnsupportedOperationException("Super calls with default arguments not supported in this target, function: invoke");
            }
            if ((i6 & 1) != 0) {
                z6 = true;
            }
            resumable.invoke(z6);
        }
    }

    void invoke(boolean z6);

    void resume(boolean z6);
}
