/** * Takes in a CSS pixel value (e.g. "25px") * and returns its rem value ("1.5625rem") */ export declare function pxToRem(px: string): string;