import { State } from "./state"; /** * @function * @param {Effect} callback effecting callback * @param {unknown[]} [values] dependencies to the effect * @return {void} */ declare const useLayoutEffect: (callback: (this: State) => void | VoidFunction | Promise, values?: readonly unknown[] | undefined) => void; export { useLayoutEffect };