import type { Color, EDSColor, EDSTextColor, HexColorValue, RGBAColorValue, RGBColorValue, Token } from "./types"; export declare const isHexColorValue: (obj: string) => obj is HexColorValue; export declare const isRGBAColorValue: (obj: string) => obj is RGBAColorValue; export declare const isRGBColorValue: (obj: string) => obj is RGBColorValue; export declare const isEDSColor: (obj: string) => obj is EDSColor; export declare const isTextColor: (obj: string) => obj is EDSTextColor; /** * Given a library color, resolve it to a abstracted color used by the master token. * @param color Color to resolve. * @param theme The current theme of the application. * @returns A resolved color. */ export declare function resolveColor(color: Color, theme: Token): Color;