/** * Converts the color to a grayscale, by reducing its saturation to 0. * * @example * background: grayscale('#CCCD64'), * background: grayscale('rgba(204,205,100,0.7)'), */ export declare function grayscale(color: string): string;