import { SoftwareDeliveryMachine } from "../machine/SoftwareDeliveryMachine";
import { AddressChannels } from "./addressChannels";
/**
 * Context allowing us to communicate with an admin
 */
export interface AdminCommunicationContext {
    /**
     * Address the admin of this SDM
     */
    addressAdmin: AddressChannels;
    /**
     * The SDM that is currently running
     */
    sdm: SoftwareDeliveryMachine;
}
//# sourceMappingURL=AdminCommunicationContext.d.ts.map