import type { Effect } from "./effect.js"; /** * Returns an effect that first executes the outer effect, and then executes * the inner effect, returning the value from the inner effect, and effectively * flattening a nested effect. */ export declare function flatten(effect: Effect>, __trace?: string): Effect; //# sourceMappingURL=flatten.d.ts.map