import { Effect } from "effect"; /** Tracks ownership per request event so concurrent requests remain isolated. */ export declare function is_running_remote_effect_handler(event?: object): boolean; /** Marks one request as handler-owned for the lifetime of the supplied Effect. */ export declare const RunInsideRemoteEffectHandler: (event: object, effect: Effect.Effect) => Effect.Effect;