/** * Creates an axios instance with the required * Authorization headers to use the official api. * * @param {string} token - The api token from https://developer.clashroyale.com * @param {string} baseUrl - The base url for the api (optional) */ declare const getAxiosInstance: (token: string, baseUrl?: string) => import("axios").AxiosInstance; export { getAxiosInstance };