/** * Takes in any color and returns it as an hsla string. */ declare function toHsla(color: string): string; export default toHsla;