import { IGelf } from '../services';
export default interface IServiceBroker {
    nodeID: string;
    kafkaBrokers: string[];
    schemaRegistry: string;
    gelf?: IGelf;
}
