import { InjectionRequestMessage, InjectionStatusMessage, InjectionCompleteMessage, InjectionResetRequestMessage, InjectionResetCompleteMessage } from './messages'; export declare namespace InjectionTypes { /** * The name and type of message that the Injection subset can publish. */ type publishMessagesList = { injection_request: InjectionRequestMessage; injection_status_request: null; injection_reset_request: InjectionResetRequestMessage; }; /** * The name and type of message to which the Injection subset can subscribe. */ type subscribeMessagesList = { injection_status: InjectionStatusMessage; injection_complete: InjectionCompleteMessage; injection_reset_complete: InjectionResetCompleteMessage; }; }