import type { Gen } from '../gen/index.js'; /** * Asserts that a value is a `Function` using `yield` syntax. * * @tags guard, functions, generator */ export declare const isGeneratorFunction: (value: G | unknown) => value is G extends Gen.Any ? G : Gen.Any;