import type { Either } from "@effect-ts/system/Either"; import type * as HKT from "../HKT/index.js"; export interface ChainRec { readonly chainRec: (f: (a: A) => HKT.Kind>) => (a: A) => HKT.Kind; } export declare function tailRec(a: A, f: (a: A) => Either): B; //# sourceMappingURL=index.d.ts.map