import type { AxiosRequestConfig } from 'axios'; import Config from "../core/config"; import { AxiosConfigMapper } from "../core/builder"; type ConfigType = Config | AxiosRequestConfig | AxiosConfigMapper; type Decorator = T extends Config ? ClassDecorator : PropertyDecorator; export default function RequestConfig(config: T): Decorator; export {};