import { ApiParam } from "../../../../model/open-api/ApiParam"; /** * Decorator which injects a HTTP request header as a parameter value. * * Value passed to the method will be a string. * * @param headerName The name of the header to inject. */ export declare function header(headerName: string, apiParamInfo?: ApiParam): (classDefinition: object | Function, methodName: string, paramIndex: number) => void;