/** * Crop modes. Based on the modes supported by MeTA * * @internal */ export declare const CropMode: { readonly Default: "fit"; /** * Keeps the aspect ratio. Similar to center */ readonly Fit: "fit"; /** * Provides an image of the size requested. The image might be larger or smaller in one dimension */ readonly Fill: "fill"; /** * Saves the top of the image when needing to crop */ readonly Top: "top"; /** * Saves the bottom of the image when needing to crop */ readonly Bottom: "bottom"; }; /** * @internal */ export type CropMode = (typeof CropMode)[keyof typeof CropMode]; //# sourceMappingURL=CropMode.d.ts.map