import type { ColorData } from './color-data';
import type { ComponentValue } from '@csstools/css-parser-algorithms';
export type ColorParser = (x: ComponentValue) => ColorData | false;
