/** * This is a simple wrapper to get the view width or view height. * * @param direction - Either the "height" or "width" string to get that * dimension * @returns the view width or view height. */ export declare function getViewportSize(direction: "height" | "width"): number;