import { BasicCardProps } from '../Basic'; export interface FavCardProps extends BasicCardProps<{ content_id: string; content_title: string; content_extra: Record; content_type: string; content_cover: string; }> { target: '_blank' | '_self'; scope: string; } export default function FavCard({ resource, sdpAppId, target, scope }: FavCardProps): import("react/jsx-runtime").JSX.Element;