import { ABIService } from "./abi_service"; import { NetworkService } from "./network_service"; export * from "./network_service"; export * from "./abi_service"; declare class Service { network: NetworkService; abi: ABIService; } export declare const service: Service;