/** Number of columns to move backward. Defaults to `1`. */ export declare const backward: (count?: number | undefined) => string; /** Number of rows to move down. Defaults to `1`. */ export declare const down: (count?: number | undefined) => string; /** Number of columns to move forward. Defaults to `1`. */ export declare const forward: (count?: number | undefined) => string; /** Hide the cursor. */ export declare const hide: string; /** Move cursor to the next line. */ export declare const nextLine: string; /** Return the current cursur position. */ export declare const position: string; /** Move cursor to the previous line. */ export declare const prevLine: string; /** Restores the cursor position/state. */ export declare const restorePosition: string; /** Saves the cursor position/state. */ export declare const savePosition: string; /** Show the cursor. */ export declare const show: string; /** Move cursor to the start of the current line. */ export declare const startLine: string; /** Set the relative position of the cursor. */ export declare const to: (x: number, y?: number | undefined) => string; /** Set the absolute position of the cursor, starting from the top left. */ export declare const toAbsolute: (x: number, y?: number | undefined) => string; /** Number of rows to move up. Defaults to `1`. */ export declare const up: (count?: number | undefined) => string; //# sourceMappingURL=cursor.d.ts.map