import { Obj } from '../entity.js';
import { ObjOptions } from './base.js';
export declare class SystemObj extends Obj<'System'> {
    readonly typeOf: "System";
    constructor(opts: ObjOptions);
}
export declare function isSystemObj(obj: any): obj is SystemObj;
