import { Color, IColor } from "./Color";
export interface IProcessColor extends IColor {
    profile: string;
    alpha: number;
}
export declare abstract class ProcessColor extends Color {
    private _profile;
    private _alpha;
    constructor(alpha: number, profile?: string);
    get alpha(): number;
    get profile(): string;
    get isTransparent(): boolean;
    equals(other: Color): boolean;
    getData(): IProcessColor;
    private _validateProfile;
}
