import { ColorBlendMode } from "./BlendModeConfig"; type Node = any; /** * Handles all color blending operations between layers * Implements various Photoshop-style blend modes */ export declare class ColorBlender { /** * Blend two colors using specified blend mode * @param baseColor - Bottom layer color * @param topColor - Top layer color * @param blendFactor - Blend amount (0-1) * @param mode - Blend mode to use */ blend(baseColor: Node, topColor: Node, blendFactor: Node, mode?: ColorBlendMode): Node; private multiply; private screen; private overlay; private add; private subtract; private divide; private darken; private lighten; private colorBurn; private colorDodge; private softLight; private hardLight; } export {}; //# sourceMappingURL=ColorBlender.d.ts.map