/**
 * Event that fires when the color of card has changed
 */
export declare class ChangeColorEvent {
    readonly color: string;
    /**
     * Event that fires when the color of card has changed
     *
     * @param color - new color
     */
    constructor(color: string);
}
