interface InterfaceColorFromGradient { min?: string | number; max?: string | number; current?: string | number; colors: any[]; overrideRatio?: number; currentItemIndex?: number; } export declare const colorFromGradient: ({ min, max, current, colors, overrideRatio, currentItemIndex }: InterfaceColorFromGradient) => any; export declare const shade: (color: string, percent: number) => string; export declare const blend: (color1: string, color2: string, percent: string | number) => string; export declare const generateShadesOfColor: ({ color, total, current }: { color: string | string[]; total: number; current?: number; }) => string[] | string; export {};