/** * If `condition` is true it throws error with `msg` in dev and `console.error`s `msg` otherwise * @param condition * @param msg */ export default function throwErrorInDev(condition: boolean, msg: string, info?: any): void;