import { default as ResourceUrl } from '../../node_modules/@x-edu/functions/dist/resource'; import { BasicCardProps } from '../Basic'; export declare const UrlToolKit: ResourceUrl; export interface ListCardProps extends BasicCardProps<{ cover: string; cover_url: string; extra: Record; title: string; library_id: string; resource_type: string; description: string; scope: string; stat: { uv: number; like: number; }; unit_id?: string; }> { target: '_blank' | '_self'; scope: string; } export default function ListCard({ resource, sdpAppId, scope, target }: ListCardProps): import("react/jsx-runtime").JSX.Element;