/** * Get the width of a DOM element * @param node The DOM element * @param client Whether to get the client width * @returns The width of the DOM element */ export default function getWidth(node: Element | Window, client?: Element): number;