import React from "react"; interface H5PContentProps { contentId: string; h5pUrl?: string; className?: string; onCompleted?: (score: number, maxScore: number) => void; onStarted?: () => void; } export declare const H5PContent: React.FC; export default H5PContent;