import { Type } from "igniteui-webcomponents-core";
/**
 * Indicates how the images will be stretched.
 */
export declare enum ImageStretchOptions {
    /**
     * Images stretch but try to maintain aspect ratio.
     */
    Uniform = 0,
    /**
     * Image fills all available space but breaks aspect ratio.
     */
    Fill = 1,
    /**
     * Image is displayed unstreteched.
     */
    None = 2
}
/**
 * @hidden
 */
export declare let ImageStretchOptions_$type: Type;
