utils for conding
import { debug } from '@peterroe/utils'
const mode = process.env.NODE_ENV === 'production'
const log = debug(mode)
declare function log(desc: string, content: any, depth: number | null = null)import { random } from '@peterroe/utils'
declare function random(length: number)