/** * Like `useEffect`, but the callback is deferred to the next Heartbeat frame. * @param callback The callback to run * @param dependencies Optional dependencies to trigger the effect */ export declare function useDeferEffect(callback: () => void, dependencies?: unknown[]): void;