/**
 * 校验是否是函数
 */
declare function isFunction(val: unknown): val is (...args: any[]) => any;

export { isFunction };
