export interface RecommendedProduct {
    objectID: string;
    public_product_id: string;
    name: Record<string, string>;
    image: string;
    price: Record<string, Record<string, number>>;
    sale_price: Record<string, Record<string, number>>;
    status: string;
    url?: string;
}
export interface XSellResponse {
    results: Array<{
        hits: RecommendedProduct[];
    }>;
}
