import { CachiosInstance } from "cachios"; import { ServiceConfig } from "../types/restigo"; import { RestigoService } from "./service"; export declare class RestigoInstance { readonly cachiosInstance: CachiosInstance; constructor(cachiosInstance: CachiosInstance); createService: (prefix: string, config?: ServiceConfig | undefined) => RestigoService; } export default RestigoInstance;