/**
* Gets the natural height of an HTML element by temporarily removing any transform styles.
* This is useful when you need to measure the element's actual dimensions without the influence
* of CSS transforms, which can affect the element's visual size.
*
* @param element - The HTML element to measure
* @returns The natural height of the element in pixels
* @example
* ```tsx
* const element = document.getElementById('my-element');
* const height = getNaturalHeight(element);
* ```
*/
export declare function getNaturalHeight(element: HTMLElement): number;