export default class InsuranceProduct { apiKey: string; baseURL: string; constructor(apiKey: string); createProduct(data: any): Promise; getProducts(): Promise>; getProductById(id: string): Promise>; createService(data: any): Promise; getServiceById(id: string): Promise>; getServices(): Promise>; }