import * as WebSocket from "ws";
import { RequestProcessor } from "../RequestProcessor";
export interface WebSocketRequestProcessor extends RequestProcessor {
    onRegistration(registration: RegistrationConfirmation): any;
    onConnect(ws: WebSocket): any;
    onDisconnect(): any;
}
export interface RegistrationConfirmation {
    url: string;
    /**
     * @deprecated use the apiKey from configuration instead
     */
    jwt: string;
    name: string;
    version: string;
}
//# sourceMappingURL=WebSocketRequestProcessor.d.ts.map