import { ColorMapping } from './core';
/**
 * Main entry point for working with Lottie colors
 */
export declare class LottieColorManager {
    static changeColors(lottieData: any, colorMappings: ColorMapping[]): any;
    /**
     * Analyze colors in a Lottie animation
     * Useful for debugging or understanding the color structure
     */
    static analyzeColors(lottieData: any): {
        uniqueColors: string[];
    };
}
