import Apktool from './tools/apktool'; import UberApkSigner from './tools/uber-apk-signer'; export declare type TaskOptions = { inputPath: string; outputPath: string; skipPatches: boolean; certificatePath?: string; mapsApiKey?: string; apktool: Apktool; uberApkSigner: UberApkSigner; tmpDir: string; wait: boolean; isAppBundle: boolean; debuggable: boolean; skipDecode: boolean; }; export declare function showArmWarning(): void;