import type { Channels } from '../types';
declare const RGB: {
    re: RegExp;
    parse: (color: string) => Channels | void;
    stringify: (channels: Channels) => string;
};
export default RGB;
