/**
 * Set the environment to production or development
 * lots of tools use this to determine if they should run in a dev mode.
 */
export declare function setNodeEnv(mode: 'development' | 'production'): void;
