export declare class RESTClient { #private; constructor(wsUrl: string, password?: string); put(route: string, body?: unknown): Promise; post(route: string, body?: unknown): Promise; patch(route: string, body?: unknown): Promise; delete(route: string): Promise; }