import { Cell } from "../../core/types.js";

//#region src/hooks/utils/tapHook.d.ts
declare const tapHook: <T extends Cell["type"]>(type: T, init: () => Cell) => Cell & {
  type: T;
};
declare const registerRenderMountTask: (task: () => void) => void;
//#endregion
export { registerRenderMountTask, tapHook };
//# sourceMappingURL=tapHook.d.ts.map