import * as lodash from 'lodash'; import chroma from 'chroma-js'; declare const createSolidColorScale: (color: string, mode?: string) => chroma.Color[]; declare const genTailwindTheme: (color: string) => Record; declare const setTailwindTheme: lodash.DebouncedFunc<(color: string) => void>; declare const markDarkColor: (color: string) => string; declare const calculateHue: (color: number[], end: number, defaultValue?: number) => number; declare const calculateSaturation: (hsv: number[], range: number, max?: number) => number; declare const calculateLightness: (hsv: number[], range: number, max?: number) => number; export { calculateHue, calculateLightness, calculateSaturation, createSolidColorScale, genTailwindTheme, markDarkColor, setTailwindTheme };