export declare const removeComments: (input: string) => string;
export declare const parseEnvLine: (line: string) => {
    arg: string;
    value: string;
} | null;
export declare const resolveEnvVariables: (str: string, env: typeof process.env) => string;
