import React from 'react';
export declare function Widget({ title, products, renderProduct, breakpoints, carouselGap, RightArrowIcon, imageAspectRatio }: {
    title?: React.ReactNode;
    products: Promise<any>;
    renderProduct?: (product: any, pos: number) => React.ReactNode;
    breakpoints?: {
        'mobile': number;
        'tablet': number;
        'desktop': number;
    };
    carouselGap?: number;
    RightArrowIcon?: JSX.Element;
    imageAspectRatio: string;
}): import("react/jsx-runtime").JSX.Element;
