import { ServerType } from './interfaces';
export declare class Verbs {
    static Get: string;
    static Post: string;
    static Put: string;
    static Patch: string;
    static Head: string;
    static Delete: string;
}
export declare class RestParser {
    parser: any;
    response: any;
    constructor(type: ServerType);
    parse(args: any, paramsMap: any, functionArgs: any): any;
}
