import { AxiosInstance } from "axios"; import { ServiceConfig } from "../types/forest"; import { ForestService } from "./service"; export declare class ForestInstance { readonly axiosInsance: AxiosInstance; constructor(axiosInsance: AxiosInstance); createService: (prefix: string, config?: ServiceConfig | undefined) => ForestService; } export default ForestInstance;