import type { ZoroConfig } from "../types/zoroConfigType.ts"; export declare class Zoro { private baseUrl; private timeout; private headers; constructor(config: ZoroConfig); private buildUrl; private request; get(url: string): Promise; post(url: string, data: D): Promise; patch(url: string, data: D): Promise; put(url: string, data: D): Promise; delete(url: string): Promise; }