/**
 * Converts a color to its grayscale equivalent.
 *
 * @param color The color to be converted to grayscale in any valid CSS color format.
 * @returns The hexadecimal string of the grayscale color.
 */
declare const grayscale: (color: string) => string;
export default grayscale;
