declare const _default: (stream?: NodeJS.WriteStream) => {
    stream: NodeJS.WriteStream;
    currentWindowSize: () => {
        width: number | undefined;
        height: number | undefined;
    };
    hideCursor: () => boolean;
    showCursor: () => boolean;
    cursorUp: (rows?: number) => boolean;
    cursorDown: (rows?: number) => boolean;
    write: (str: string) => boolean;
    writeLine: (str: string) => boolean;
    clearLine: () => boolean;
    replaceLine: (str: string) => boolean;
    deleteToEnd: () => boolean;
};
export = _default;
