import { RgbColor } from "@aurigma/design-atoms-model/Colors";
import { IRgbColorParser } from "./IColorParser";
export declare class RgbColorParser implements IRgbColorParser {
    private readonly _mappedParsers;
    parse(colorString: string): RgbColor | null;
    private _parseHex;
    private _parseRgb;
    private _parseRgba;
}
