import { ConfigPlugin } from "@expo/config-plugins";
/** Applies all needed native configurations. */
declare const withReactNativeIMGLY: ConfigPlugin<{
    android?: {
        version?: string;
        modules?: [string];
        buildToolsVersion?: string;
        minSdkVersion?: string;
        compileSdkVersion?: string;
        targetSdkVersion?: string;
        kotlinGradlePluginVersion?: string;
        kspVersion?: string;
    };
} | void>;
export default withReactNativeIMGLY;
