import { ActiveMqBrokerEndpoints } from"./activemq-broker-endpoints";
export interfaceIActiveMqBroker {
/**
* The IP address of the broker.
*/readonly ipAddress: string;
/**
* A set of endpoints for the broker.
*/readonly endpoints: ActiveMqBrokerEndpoints;
}