/** @format */
/**
 * Enum representing the direction to flip an image.
 */
export declare enum FlipDirection {
    /**
     * Flip the image horizontally.
     */
    horizontal = 0,
    /**
     * Flip the image vertically.
     */
    vertical = 1,
    /**
     * Flip the image both horizontally and vertically.
     */
    both = 2
}
