import { NDRContentType } from '../../node_modules/@x-edu/functions/dist/resource/type'; import { BasicCardProps } from '../Basic'; export interface ChannelCardProps extends BasicCardProps<{ unit_id: string; title: string; extra: Record; type: NDRContentType; cover_url: string; cover: string; library_id: string; description: string; }> { target: '_blank' | '_self'; channelId: string; coverSize: 240; } export default function ChannelCard({ sdpAppId, resource, coverSize, target }: ChannelCardProps): import("react/jsx-runtime").JSX.Element;