/** * hook for calling updates before the end of the re-render, example-changing the cursor position without blinking * * @returns {function(callback: function(): void): void} Function helps manage state before the end of the re-render */ export declare const useRunAfterUpdate: () => (callback: () => void) => void;