import { AxiosRequestConfig } from 'axios'; interface StringLike { toString(): string; } type TokenFactory = (config: AxiosRequestConfig) => string | StringLike | undefined | Promise; type Token = string | StringLike | TokenFactory; export type { StringLike, Token, TokenFactory };