import termSize from 'term-size'; /** Clear the terminal screen. */ export declare const clear: string; /** Clear the whole terminal, including scrollback buffer. */ export declare const clearTerminal: string; /** Erase the screen and move the cursor the top left position. */ export declare const erase: string; /** Erase the screen from the current line down to the bottom of the screen. */ export declare const eraseDown: string; /** Erase from the current cursor position to the end of the current line. */ export declare const eraseEndLine: string; /** Erase the entire current line. */ export declare const eraseLine: string; /** Erase from the current cursor position up the specified amount of rows. */ export declare const eraseLines: (count: number) => string; /** Erase from the current cursor position to the start of the current line. */ export declare const eraseStartLine: string; /** Erase the screen from the current line up to the top of the screen. */ export declare const eraseUp: string; /** Scroll down the screen by 1 line. */ export declare const scrollDown: string; /** Scroll up the screen by 1 line. */ export declare const scrollUp: string; /** Reliably and accurately get the screen size (in `columns` and `rows`). */ export declare const size: typeof termSize; //# sourceMappingURL=screen.d.ts.map