/** * Converts a color to an `hsla` color string. * * ```js * toHsla('peachpuff'); // 'hsla(28, 100%, 86%, 1)' * ``` * * @param color The input color. * @returns An `hsla` color string. */ declare function toHsla(color: string): string; export default toHsla;