interface ColorAdmixture { main: string; percent: number; mixed: string; } export interface ReadableColor extends ColorAdmixture { name: string | undefined; tone: string; } /** * Convert color to ReadableColor object * @param rawColor raw string color * @returns ReadableColor object */ export declare const readableColor: (rawColor: string) => ReadableColor; export {};