export declare const TDeferredSym: unique symbol; export type TDeferredSym = typeof TDeferredSym; export declare const _E: unique symbol; export type _E = typeof _E; export declare const _A: unique symbol; export type _A = typeof _A; /** * @tsplus type effect/core/stm/TDeferred */ export interface TDeferred { readonly [TDeferredSym]: TDeferredSym; readonly [_E]: () => E; readonly [_A]: () => A; } /** * @tsplus type effect/core/stm/TDeferred.Ops */ export interface TDeferredOps { $: TDeferredAspects; } export declare const TDeferred: TDeferredOps; /** * @tsplus type effect/core/stm/TDeferred.Aspects */ export interface TDeferredAspects { } //# sourceMappingURL=definition.d.ts.map