import { Rgb } from "./types.js";

declare function parseRgb(color: string): Rgb | undefined;

export default parseRgb;
