import React, { CSSProperties } from 'react'; import { VideoType } from "../../../../interfaces/types/Video"; export type Props = { url: string; image?: string; className?: string; style?: CSSProperties; autoPlay?: boolean; forceType?: VideoType.SHORTS | VideoType.VIDEO; /** `width:height` (e.g. `16:9`, `9:16`). Overrides auto short/landscape padding when set. */ ratio?: string; /** Thumbnail / Plyr poster: `cover` fills frame (default), `contain` shows full image with possible letterboxing. */ posterFit?: 'cover' | 'contain'; baseUrl?: string; onPushStatus?: (val: boolean) => void; }; declare const SocialLinkPreview: ({ url, image, className, style, baseUrl, autoPlay, forceType, ratio, posterFit, onPushStatus, }: Props) => React.JSX.Element; export { SocialLinkPreview };