export type ColorType = 'cmyk' | 'rgba' | 'hsla' | 'hsva' | 'hexa'; export interface ColorMatch { type: ColorType; match: RegExpExecArray; } export declare function isColor(str?: string | null): ColorMatch | undefined;