import type { ValuesOf } from '../../Types/ValuesOf'; /** * `VideoFit` - Defines how a video should fit within its container. * * @public */ export declare const VideoFit: { readonly Fill: "fill"; readonly Contain: "contain"; readonly Cover: "cover"; readonly None: "none"; readonly ScaleDown: "scale-down"; }; /** * @public */ export type VideoFit = ValuesOf; //# sourceMappingURL=VideoFit.d.ts.map