import { Module } from './module.class';
export declare class System {
    id: string;
    service: any;
    parent: any;
    modules: Module[];
    exists: boolean;
    constructor(srv: object, sys_id: string);
    get(mod_id: string, index?: number): any;
    rebind(): void;
}
