import React from "react";
import Context from "./context";
import { LiteralValue } from "./types";
interface PlayerProps {
    userId: string;
    projectId: string;
    version?: string;
    item?: string;
    values?: Record<string, LiteralValue>;
    apiRoot?: string;
    publishedUrlTemplate?: string;
    assetsUrlTemplate?: string;
    libUrlTemplate?: string;
    onProjectLoaded?: (context: Context) => void;
    onProjectError?: (message: string) => void;
}
declare const NodeBoxPlayer: React.FC<PlayerProps>;
export default NodeBoxPlayer;
