import { Context, Layer } from "effect"; import { StateCell } from "../cells/define-cell.js"; export interface StateCells { readonly cells: Record>; } export declare const StateCellsTag: Context.Tag; export declare const makeStateCellsLayer: ( initialValues: Record, ) => Layer.Layer;