import type { Has, Tag } from "../Has/index.js"; import type { Managed } from "../Managed/managed.js"; import type { Effect } from "./effect.js"; /** * Provides a managed to the given effect */ export declare function provideSomeManaged(managed: Managed): (self: Effect) => Effect; /** * Provides a managed to the given effect */ export declare function provideServiceManaged(tag: Tag): (managed: Managed) => (self: Effect, E1, A1>) => Effect; //# sourceMappingURL=provideManaged.d.ts.map