/** * Convert a value to an array. `undefined` and `null` values are converted to an empty array. * @param {*} value - The value to convert. * @returns {any[]} The converted array. */ export function toArray(value: any): any[]; /** * Wait for a given number of milliseconds or a `requestAnimationFrame`. * @param {number} ms - The number of milliseconds to wait. * @returns {Promise} */ export function wait(ms: number): Promise; /** * Get the longhands for a given property. * @param {string} property - The property to get the longhands for. * @returns {string[]} The longhands. * @see https://lea.verou.me/blog/2020/07/introspecting-css-via-the-css-om-getting-supported-properties-shorthands-longhands/ */ export function getLonghands(property: string): string[]; /** * Parse a CSS `