import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ImageFit` - The `ImageFit` object is used to describe the different types of image fits. * * @public */ export declare const ImageFit: { readonly Fill: "fill"; readonly Contain: "contain"; readonly Cover: "cover"; readonly None: "none"; readonly ScaleDown: "scale-down"; }; /** * @public */ export type ImageFit = ValuesOf; //# sourceMappingURL=ImageFit.d.ts.map