export declare class XReplyClient { private token; private baseUrl; constructor(token: string, baseUrl?: string); private headers; private timeoutMs; private request; get(path: string): Promise; post(path: string, body?: unknown): Promise; patch(path: string, body?: unknown): Promise; delete(path: string): Promise; postMultipart(path: string, formData: FormData): Promise; } export declare function getClient(): XReplyClient; export declare function createClient(token: string, baseUrl?: string): XReplyClient; //# sourceMappingURL=client.d.ts.map