export declare function buildEnvContent(values: {
    readonly [key: string]: string;
}): string;
export declare function readEnv(path: string): Promise<{
    readonly [key: string]: string;
}>;
