/** This type utility is only used for workaround https://github.com/microsoft/TypeScript/issues/37663 */
declare const isFunction: (x: unknown) => x is Function;

export { isFunction };
