/**
 * 将颜色转换到 rgb 的格式
 * @param {color} color 颜色
 * @return 将颜色转换到 '#ffffff' 的格式
 */
declare function toRGBString(color: string): string;
/**
 * export with memoize.
 * @param color
 * @returns
 */
export declare const toRGB: typeof toRGBString;
export {};
