import { Callable } from "../brsTypes"; /** * Moves the cursor to the specified position on the current line. If the * provided position is greater than the current console width and the output * is a TTY, the resulting position is modulo'd by the current console width. * May be used several times in a `print` list. */ export declare const Tab: Callable; /** * Returns a number from 0 to the current console width, indicating the * position of the output cursor. Requires a "dummy argument" of any type, as * it's completely ignored. */ export declare const Pos: Callable;