export interface IProcessorMap {
    [systemProcName: string]: (callback: (err?: Error | string | null) => void) => void;
}
