export default warning; /** * Identical to `assert`, except it sends to console rather than throwing. * If process.env.NODE_ENV is "production", nothing happens. * * @function warning * @param {any} ok Value to test * @param {...any} args Values to log * @returns {void} * @category Errors */ declare function warning(ok: any, ...args: any[]): void;