import { HttpResponse } from './http-response'; export interface HttpPostClient { post(url: string, body: Record): Promise; }