/** * 检查 `value` 是否是 `function` 类型 *_– * @example * ```ts * const func = () => {} * * isFunction(func) * // => true * isFunction(null) * // => false * ``` */ export declare function isFunction(value: unknown): value is (...args: any[]) => any;