import React from "react";
interface Props {
    value: Record<string, any> | undefined;
}
export default function SocialPreviewCard({ value: og }: Props): React.JSX.Element;
export {};
