export interface Jobs { service: string; components: string[]; } export interface TxJobServiceConnector { mode: string; host: string; port: string; path: string; } export interface TxJobServiceConnectors { service: string; connector: TxJobServiceConnector; } export interface TxJobServicesJSON { stack: string[]; trace: string[]; block: string[]; current: string; jobs: Jobs[]; connectors: TxJobServiceConnectors[]; } export declare const TxJobServicesEmptyJSON: { "stack": any[]; "trace": any[]; "block": any[]; "current": string; "jobs": any[]; "connectors": any[]; };