/** * --- * category: utilities/utils * --- * Converts a CSS unit value combination into an array of type [ value, unit ] * * @module parseUnit * * Example inputs: * - '100px' * - '20rem' * - '10vh' * - '400vmin' * * @param {string|number} str * @returns {Array} Returns array of shape [ value, unit ] Unit is '' if it could * not be parsed */ declare function parseUnit(str: string | number): [number, string]; export default parseUnit; export { parseUnit }; //# sourceMappingURL=parseUnit.d.ts.map