import type { HexString } from '~/types/color'; import type { ColorScheme } from '~/types/color-scheme'; interface GenerateColorPaletteProps { inputColor: HexString; } /** * Generates a complete color palette based on an input color. * * @param inputColor The color to use as the base for the generated colors. * @param config The configuration used when generating colors. * * @returns A object containing a set of color ramps. */ export declare const generateColorPalette: ({ inputColor }: GenerateColorPaletteProps) => ColorScheme>>; export {};