import { ExecutionContext } from '@nestjs/common';
import { HttpInterceptorService } from '@ogma/nestjs-module';
import { Request } from 'express';
export declare class ExpressParser extends HttpInterceptorService {
    getCallerIp(context: ExecutionContext): string[] | string;
    getCallPoint(context: ExecutionContext): string;
    getMethod(context: ExecutionContext): string;
    getProtocol(context: ExecutionContext): string;
    private getHttpMajor;
    private getHttpMinor;
    getRequest(context: ExecutionContext): Request;
}
