/** * Returns the "content width" of an element, which is its clientWidth * minus any horizontal padding. * * @param el - The element to measure. */ export declare function getContentWidth(el: Element): number; export declare function getContentHeight(el: Element): number;