import { Cell, ResourceFiber, ResourceFiberRoot } from "../types.js";

//#region src/core/helpers/root.d.ts
declare const createResourceFiberRoot: (dispatchUpdate: (cb: () => boolean) => void) => ResourceFiberRoot;
declare const commitRoot: (root: ResourceFiberRoot) => void;
declare const setRootVersion: (root: ResourceFiberRoot, version: number) => void;
declare const markCellDirty: (fiber: ResourceFiber<any, any>, cell: Cell & {
  type: "reducer";
}) => void;
//#endregion
export { commitRoot, createResourceFiberRoot, markCellDirty, setRootVersion };
//# sourceMappingURL=root.d.ts.map