import { MethodResult, MethodError } from '@methodus/framework-commons';
import { ConfiguredServer } from '../../server.configured';
export declare class EmitterTestServer extends ConfiguredServer {
    constructor();
}
export declare class ParserForPlugin {
    constructor();
    parse(args: any, paramsMap: any, functionArgs: any): ParserResponse;
}
export declare class EmitterResponse {
    constructor();
    handle(args: any, methodResult: MethodResult | MethodError | any, headers: any): any;
}
export declare class ParserResponse {
    args: any;
    isRest: boolean;
    securityContext: any;
    constructor(args: any, isRest: boolean, securityContext: any);
}
