/** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export declare type Hues = number[]; export declare type ColorLightness = [number, number]; export declare type GrayscaleLightness = [number, number]; export declare type ColorSaturation = number; export declare type GrayscaleSaturation = number; export interface Options { hues?: Hues; colorLightness?: ColorLightness; grayscaleLightness?: GrayscaleLightness; colorSaturation?: ColorSaturation; grayscaleSaturation?: GrayscaleSaturation; }