/** @format */
/**
 * Enum representing different blend modes.
 */
export declare enum BlendMode {
    /** Direct blend mode */
    direct = 0,
    /** Alpha blend mode */
    alpha = 1,
    /** Lighten blend mode */
    lighten = 2,
    /** Screen blend mode */
    screen = 3,
    /** Dodge blend mode */
    dodge = 4,
    /** Addition blend mode */
    addition = 5,
    /** Darken blend mode */
    darken = 6,
    /** Multiply blend mode */
    multiply = 7,
    /** Burn blend mode */
    burn = 8,
    /** Overlay blend mode */
    overlay = 9,
    /** Soft light blend mode */
    softLight = 10,
    /** Hard light blend mode */
    hardLight = 11,
    /** Difference blend mode */
    difference = 12,
    /** Subtract blend mode */
    subtract = 13,
    /** Divide blend mode */
    divide = 14
}
