import { EventEmitter, OnInit } from '@angular/core';
import * as i0 from "@angular/core";
export declare class AswColorPicker implements OnInit {
    isEditor: boolean;
    textColor: string;
    backgroundColor: string;
    colorChange: EventEmitter<{
        colorCode: string;
        where: string;
    }>;
    constants: any;
    colorsName: string[];
    constructor();
    ngOnInit(): void;
    /**
     * Change color from default colors
     */
    onChange(color: string, where: string): void;
    /**
     * Change color from input
     */
    changeColorManual(color: string, where: string): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<AswColorPicker, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<AswColorPicker, "asw-color-picker", never, { "isEditor": { "alias": "isEditor"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; }, { "colorChange": "colorChange"; }, never, never, false, never>;
}
