export declare function mergeWithoutClobbering(original: {
    [key: string]: string | undefined;
}, newStuff: {
    [key: string]: string | undefined;
}, message: string): {
    [key: string]: string | undefined;
};
