EntitySpec: EntitySpecBase & {
    contentType?: string;
    kind: "media";
    src: string | File;
} | EntitySpecBase & {
    kind: "model";
    src: string | File;
} | EntitySpecBase & {
    color?: string;
    kind: "primitive";
    shape: "box" | "sphere" | "cylinder" | "plane";
    size?: Vector3Data;
}