/** @jsxRuntime classic */ /** @jsx jsx */ import { jsx } from "@front10/base-elements"; import { SingleCardProps } from "../CardProps"; interface Props { mediaShown: "video" | "gif" | "image"; imageSrc?: string; animationSrc?: string; videoSrc?: string; alt: string; imageCover: SingleCardProps["imageCover"]; round?: boolean; isLoading?: boolean; } export declare function TiktokImage(props: Props): jsx.JSX.Element; export {};