import type { EggProtoImplClass } from '@eggjs/tegg-types';
import { HTTPMethodMeta } from '../../model';
export declare class HTTPControllerMethodMetaBuilder {
    private readonly clazz;
    private readonly methodName;
    constructor(clazz: EggProtoImplClass, methodName: string);
    private checkParamDecorators;
    private buildParamType;
    getPriority(): number;
    build(): HTTPMethodMeta | undefined;
}
