import { Action } from "../../internal/Action.js"; /** * @description * Defines the mode of blending to use when overlaying an image. * Even though BlendMode is technically an actionQualifier, it implements exactly the same functionality as an action. * This is true because Position is actually compounded of multiple qualifiers * * Learn more: {@link https://cloudinary.com/documentation/effects_and_artistic_enhancements#blending_and_masking_layers|Overlay blending effects} * * @memberOf Qualifiers.BlendMode * @extends SDK.Action */ declare class BlendModeQualifier extends Action { constructor(blendMode: string, level?: number); } export { BlendModeQualifier };