import { HttpClient } from '../utils'; /** * @hidden */ export default class BaseRestConsumer { protected client: HttpClient; constructor(endpoint: string); protected get(endpoint: string, params?: Record): Promise; protected post(endpoint: string, params?: Record): Promise; }