import { AssetParamValue } from '@uniformdev/assets'; import { ComponentProps, ViewPort } from '@/types/cskTypes'; export type VideoParameters = { video?: AssetParamValue; placeholderImage?: AssetParamValue; autoPlay?: boolean; lazyLoad?: boolean; loop?: boolean; controls?: boolean; muted?: boolean; overlayColor?: string; overlayOpacity?: string; border?: string | ViewPort; }; export type VideoProps = ComponentProps; export { default } from './video';