/**
 * Calculate the width of the browser's vertical scrollbar.
 *
 * Using window.innerWidth can be thrown off by horizontal overflow on the page,
 * so measure using a temporary element instead.
 *
 * @return {number} Scrollbar width in pixels
 */
export declare function getScrollbarWidth(): number;
