import memoize from "memoizee";
/** Install gnupg and certificates (usually missing from docker containers) */
export declare function initApt(apt: string): Promise<void>;
/** Install gnupg and certificates (usually missing from docker containers) (memoized) */
export declare const initAptMemoized: typeof initApt & memoize.Memoized<typeof initApt>;
