/** * @function pxToRem utility function to convert px to rem * @param {number} px * @returns {string} */ declare const pxToRem: (px: number) => string; export default pxToRem;