/** * @name px * @description Converts the specified number to a pixel string * @param arg The number to convert * @returns The pixel string * @example * const pxString = px(10); * console.info(pxString); // 10px * const pxString = px('10'); // 10px * * @author Pol Gubau Amores - https://polgubau.com */ export declare function px(arg: string | number): string; //# sourceMappingURL=px.d.ts.map