/** * console.error() a message to the console in a prefixed format * Only logs when the low, medium or highest verbosity level is set * Gets disabled if verbosity is set to 0 (usually the case in production) * * @param message Message to error in the console */ export declare const error: (message: string) => false | void;