/** * If the user environment is "development". */ export declare const USER_DEV: boolean; /** * Conditional, tree-shakable logging, which is only done in the users "development" environment. * * Is the global console when in "development" environment, otherwise undefined. * When undefined code will be removed through tree-shaking. */ export declare const userConsole: Console | undefined;