// 
// Decompiled by Procyon v0.6.0
// 

package io.sentry;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.ApiStatus;

@ApiStatus.Internal
public interface IScopesStorage
{
    void init();
    
    @NotNull
    ISentryLifecycleToken set(@Nullable final IScopes p0);
    
    @Nullable
    IScopes get();
    
    void close();
}
