/**
 * 判断是不是内置函数
 * 内置函数toString后的主体代码块为 [native code]
 */
declare function isNativeFunction(val: unknown): boolean;

export { isNativeFunction };
