import { BasicCardProps } from '../Basic'; export interface FPCardProps extends BasicCardProps<{ resource_id: string; resource_name: string; update_time: string; ext_info: string; catalog_type: string; resource_type: string; [key: string]: string; }> { target: '_blank' | '_self'; } export default function FPCard({ resource, sdpAppId, target }: FPCardProps): import("react/jsx-runtime").JSX.Element;