import { BashExpression } from "../../bash/BashExpression";
import { type Context } from "../../types";
export declare const ensureNodeVersion: (context: Context) => string[];
export declare const getYarnInstall: (context: Context, options?: {
    noCustomPostInstall: boolean;
}) => string[];
export declare const getDockerAppCopyAndBuildScript: (context: Context) => BashExpression;
