import { Context } from "effect"; /** Brands remote live streams without relying on class identity. */ export declare const remote_live_stream: unique symbol; /** Selects the cached-first live source while generated yields resolve. */ export declare const RemoteLiveYield: Context.Reference; /** Internal carrier that identifies a remote live Stream. */ export type RemoteLiveStreamCarrier = { readonly [remote_live_stream]?: true; };