import memoize from "memoizee";
/** Install bash (usually missing from docker containers) */
export declare function initApk(): Promise<void>;
/** Install bash (usually missing from docker containers) (memoized) */
export declare const initApkMemoized: typeof initApk & memoize.Memoized<typeof initApk>;
