import { IDispatcher } from "@tandem/mesh"; export declare const isMaster: boolean; export declare class Serializer { readonly serialize: (value: T) => Object; readonly deserialize: (value: Object) => T; name: string; constructor(clazz: Function, serialize: (value: T) => Object, deserialize: (value: Object) => T); } /** */ export declare function fork(family: string, localBus: IDispatcher, pathName?: string, argv?: any[], env?: any): IDispatcher; /** */ export declare function hook(family: any, localBus: IDispatcher): IDispatcher;