/// import { type WidgetProduct } from '../types'; type ContentProps = { isLoading: boolean; products: WidgetProduct[]; isError: boolean; }; export declare const Content: ({ isLoading, isError, products, }: ContentProps) => JSX.Element; export {};