export default class InsuranceProduct {
    apiKey: string;
    baseURL: string;
    constructor(apiKey: string);
    createProduct(data: any): Promise<any>;
    getProducts(): Promise<import("axios").AxiosResponse<any, any>>;
    getProductById(id: string): Promise<import("axios").AxiosResponse<any, any>>;
    createService(data: any): Promise<any>;
    getServiceById(id: string): Promise<import("axios").AxiosResponse<any, any>>;
    getServices(): Promise<import("axios").AxiosResponse<any, any>>;
}
