/** @format */
/**
 * Enumeration representing different interpolation methods for resizing images.
 */
export declare enum Interpolation {
    /**
     * Selects the closest pixel. Fastest method with the lowest quality.
     */
    nearest = 0,
    /**
     * Linearly blends between the neighboring pixels. Moderate speed and quality.
     */
    linear = 1,
    /**
     * Uses cubic interpolation between neighboring pixels. Slowest method with the highest quality.
     */
    cubic = 2,
    /**
     * Averages the colors of the neighboring pixels. Balanced speed and quality.
     */
    average = 3
}
