import React from 'react'; /** * --- * category: utilities/DOM * --- * * Gets font size in px * * @module getFontSize * @param { Node | Window | React.ReactElement | React.Component | function | undefined | null } el - component or DOM node * @param { boolean } ignoreCache * @returns { number } font size in px */ declare function getFontSize(el?: Node | Window | React.ReactElement | React.Component | ((...args: any[]) => any) | null, ignoreCache?: boolean): number; export default getFontSize; export { getFontSize }; //# sourceMappingURL=getFontSize.d.ts.map