/** * Returns an up to date screen size object with `height` and `width` properties * that reflect the current size of the terminal (rows and columns in stdout). */ export declare function useScreenSize(): { height: number; width: number; };