/** @format */
/**
 * Enum representing different modes for trimming an image.
 */
export declare enum TrimMode {
    /**
     * Trim an image to the top-left and bottom-right most non-transparent pixels.
     */
    transparent = 0,
    /**
     * Trim an image to the top-left and bottom-right most pixels that are not
     * the same as the top-left most pixel of the image.
     */
    topLeftColor = 1,
    /**
     * Trim an image to the top-left and bottom-right most pixels that are not
     * the same as the bottom-right most pixel of the image.
     */
    bottomRightColor = 2
}
