export declare const lines: () => number; export declare const rows: () => number; export declare const moveCursor: (dx: number, dy: number) => Promise; export declare const clearLine: (dir: -1 | 0 | 1) => Promise; export declare const cursorTo: (x: number, y?: number | undefined) => Promise; export declare const _clearLastLine: () => Promise; export declare const _clearLinesDown: (lines: number) => Promise; export declare const hideCursor: () => void; export declare const showCursor: () => void; export declare const cursor: (visible: boolean) => void; /** Same as clear(1) */ export declare const clearLastLine: () => Promise; export declare const clear: (count?: number) => Promise; export declare const clearDisplay: () => Promise; export declare const write: (...data: Array) => number;