import { EventType } from '../../enums/EventType.js';

declare class InvocationRequest {
    type: EventType;
    requestQueueId: number;
    deviceId: string;
    constructor(type: EventType, requestQueueId: number, deviceId: string);
}

export { InvocationRequest };
