/** * Represents the `object-fit` configuration tokens that can be applied to Framework Components */ export declare enum DESIGN_FIT { contain = "contain", cover = "cover", fill = "fill", none = "none", "scale-down" = "scale-down" } export declare const DESIGN_FIT_LITERALS: { readonly contain: DESIGN_FIT.contain; readonly cover: DESIGN_FIT.cover; readonly fill: DESIGN_FIT.fill; readonly none: DESIGN_FIT.none; readonly "scale-down": typeof DESIGN_FIT["scale-down"]; }; export declare type DESIGN_FIT_ARGUMENT = keyof typeof DESIGN_FIT_LITERALS;