import 'reflect-metadata'; import { type HttpMethod } from '@modern-js/bff-core'; import type { APIHandlerInfo } from '@modern-js/bff-core'; import type { NextFunction, Request, Response } from 'express'; type Handler = APIHandlerInfo['handler']; export declare const createRouteHandler: (handler: Handler) => (req: Request, res: Response, next: NextFunction) => Promise>>; export declare const isNormalMethod: (httpMethod: HttpMethod) => httpMethod is HttpMethod; export {};