import { GlobalLogConfig } from './types'; import { AxiosResponse } from "axios/index"; declare class StringBuilder { private config; private printQueue; private filteredHeaderList; constructor(config: GlobalLogConfig); makeLogTypeWithPrefix(logType: string): this; makeDateFormat(date: Date): this; makeHeader(headers?: AxiosResponse['headers']): this; makeUrl(url?: string, baseUrl?: string): this; makeParams(params?: object): this; makeMethod(method?: string): this; makeData(data: object): this; makeStatus(status?: number, statusText?: string): this; build(): string; combineURLs(baseURL: string, relativeURL?: string): string; } export default StringBuilder;