export declare type BgxParamType = 'param' | 'response' | 'body' | 'queryParams'; export declare const bgxHttpRESTParam: symbol; /** * Abstract implementation of the http param decorator * @internal */ export declare function BgxAbstractParam(type: BgxParamType, param?: string): (target: object, propertyKey: string | symbol, parameterIndex: number) => void;