import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Fit` - The `Fit` object is used to describe the different types of fit styles. * * @public */ export declare const Fit: { /** * `none` - The default fit style. * @default */ readonly None: "none"; /** * `width` - The width fit style. */ readonly Width: "width"; /** * `plain` - The height fit style. */ readonly Height: "height"; /** * `soft` - The both fit style. */ readonly Both: "both"; }; /** * @public */ export type Fit = ValuesOf; //# sourceMappingURL=Fit.d.ts.map