interface Colors {
[key: string]: number;
}
declare const colors: Colors;
declare const matchers: {
rgb: RegExp;
rgba: RegExp;
hsl: RegExp;
hsla: RegExp;
hex3: RegExp;
hex4: RegExp;
hex6: RegExp;
hex8: RegExp;
};
export { colors, matchers, Colors, };