import { Callable } from "../brsTypes"; /** * Returns an object version of an intrinsic type, or pass through an object if given one. */ export declare const Box: Callable; /** * Returns global M pointer (the m from the root Environment). */ export declare const GetGlobalAA: Callable; /** * This function causes the script to pause for the specified time in milliseconds. */ export declare const Sleep: Callable; /** Waits until an event object is available or timeout milliseconds have passed. */ export declare const Wait: Callable; export * from "./GlobalUtilities"; export * from "./CreateObject"; export * from "./File"; export * from "./Json"; export * from "./Localization"; export * from "./Math"; export * from "./Print"; export { Run } from "./Run"; export * from "./String"; export * from "./Type";