import { type WriteStream } from "../types/io.js"; /** * Show the cursor. * * @param stream - The stream to show the cursor on. */ export declare function show(stream: WriteStream): void; /** * Hide the cursor. * * @param stream - The stream to hide the cursor on. */ export declare function hide(stream: WriteStream): void; /** * Toggle cursor visibility. * * @param force - If `true`, shows the cursor. If `false`, hides the cursor. * @param stream - The stream to toggle the cursor on. */ export declare function toggle(force: boolean | undefined, stream: WriteStream): void;