import type { ADB } from '../adb';
import type { ApkCreationOptions } from './types';
/**
 * Builds a universal .apk from the given .aab package. See
 * https://developer.android.com/studio/command-line/bundletool#generate_apks
 * for more details.
 *
 * @param aabPath Full path to the source .aab package
 * @param opts Options for APK creation
 * @returns The path to the resulting universal .apk. The .apk is stored in the internal cache
 * by default.
 * @throws {Error} If there was an error while creating the universal .apk
 */
export declare function extractUniversalApk(this: ADB, aabPath: string, opts?: ApkCreationOptions): Promise<string>;
//# sourceMappingURL=aab-utils.d.ts.map