import { IRGB } from'./interfaces';
/**
* Converts a valid CSS color string to an RGB color.
* Note that hex colors *must* be prefixed with # to be considered valid.
* Alpha in returned color defaults to 100.
*/exportdeclarefunctioncssColor(color: string): IRGB | undefined;