/** @format */
/**
 * Enum representing the pixelation mode.
 */
export declare enum PixelateMode {
    /**
     * Use the top-left pixel of a block for the block color.
     */
    upperLeft = 0,
    /**
     * Use the average of the pixels within a block for the block color.
     */
    average = 1
}
