import { StatusVariable } from './status-variable.class';
export declare class Module {
    id: string;
    parent: any;
    index: number;
    status_variables: StatusVariable[];
    debugger: any;
    private _debug;
    private service;
    constructor(srv: object, parent: any, name: string, i: number);
    bind(prop: string, cb_fn?: () => void): () => void;
    exec(fn: string, prop: string, args: any): any;
    unbind(prop: string): void;
    debug(): void;
    ignore(): void;
    get(prop: string): StatusVariable;
    rebind(): void;
    setDebug(debug: any): boolean;
}
