package com.google.firebase.remoteconfig; /* loaded from: classes3.dex */ public interface FirebaseRemoteConfigValue { boolean asBoolean() throws IllegalArgumentException; byte[] asByteArray(); double asDouble() throws IllegalArgumentException; long asLong() throws IllegalArgumentException; String asString(); int getSource(); }