declare namespace pc {

    /**
     * @name pc.ScriptComponentSystem
     * @description Create a new ScriptComponentSystem
     * @class Allows scripts to be attached to an Entity and executed
     * @param {pc.Application} app The application
     * @extends pc.ComponentSystem
     */
    class ScriptComponentSystem extends pc.ComponentSystem {
        constructor(app: pc.Application)
    }
}
