import { SpotColor } from "@aurigma/design-atoms-model";
import { IColorParser, ISpotColorParser } from "./IColorParser";
export declare class SpotColorParser implements ISpotColorParser {
    parse(colorString: string, colorParser: IColorParser): SpotColor | null;
}
