import { IHttpheaders } from '../types/axios'; import { IPropertyKey } from 'reflect-metadata-util'; export declare const enum EnumAuthorizationType { Bearer = "Bearer", Token = "token", Basic = "Basic" } export declare function Headers(value: IHttpheaders): (target: any, propertyName?: IPropertyKey) => void; export declare function Authorization(value: string, type?: string | EnumAuthorizationType): (target: any, propertyName?: IPropertyKey) => void; export declare function _makeAuthorizationValue(value: string, type?: string | EnumAuthorizationType): string;