import { IkasBaseModel } from "../base"; export declare type IkasFavoriteProduct = { customerId: string; productId: string; price: number | null; priceListId: string | null; } & IkasBaseModel;