import { Context, ControllerClass, Provider } from '@loopback/core';
import { SocketIoInvokeMethod } from '../types';
export declare class SocketIoInvokeMethodProvider implements Provider<SocketIoInvokeMethod> {
    constructor();
    value(): SocketIoInvokeMethod;
    action(context: Context, controller: ControllerClass, methodName: string, args: unknown[]): any;
}
