/** * Increases the intensity of a color. Its range is between 0 to 1. The first * argument of the saturate function is the amount by how much the color * intensity should be increased. * * @example * background: saturate(0.2, '#CCCD64'), * background: saturate(0.2, 'rgba(204,205,100,0.7)'), */ export declare function saturate(amount: number, color: string): string;