import { TConstructor } from "./ex-http-methods";
import { type Request } from "express";
export declare function getStaticMethods(cls: TConstructor): string[];
export declare function getFunctionArgs(fn: any): string[];
export declare function getClassArgs(fn: any): string[];
export type ERequest = Request & {
    scope: any;
};
