import { IOClients } from '../../../clients/IOClients'; import { ParamsContext, RecorderState, RouteHandler, ServiceContext } from './typings'; type HTTPMethods = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH' | 'DEFAULT'; type MethodOptions = Partial | Array>>>; export declare function method(options: MethodOptions): { (ctx: ServiceContext, next: () => Promise): Promise; skipTimer: boolean; }; export {};