/** @noSelfInFile */ import { Inputs } from "./helpers"; import "./reconcilerHooks"; /** * Accepts a function that contains imperative, possibly effectful code. * Unlike React, the effects run synchronously if the inputs have changed. */ export declare const useEffect: (callback: () => void | (() => void), inputs?: I | undefined) => void;