import { RouteParamTypes } from "../enums";
import { RouteParamsFactoryInterface } from "../contracts";
export declare class RouteParamsFactory implements RouteParamsFactoryInterface {
    exchangeKeyForValue<T extends Record<string, any> = any, R = any, Q = any>(key: RouteParamTypes | string, data: string | object | any, { req, res, next }: {
        req: T;
        res: R;
        next: Function;
    }): Q;
}
//# sourceMappingURL=route-params-factory.d.ts.map