export declare const manage_colors: {
    pushColors(newColors: {
        [key: string]: string;
    }): void | {
        errors: string[];
    } | {
        success: boolean;
        message: string;
    };
    getColors(): {
        [key: string]: string;
    };
    getColorsNames(): string[];
    getColorValue(color: string): string;
    updateColor(color: string, value: string): void;
    deleteColor(color: string): void;
    clearAllColors(): void;
};
