import React from 'react'; import './Bestsellers.scss'; interface BestSellersProps { bestSellers: Array<{ name: string; price: { regular: { value: number; text: string; }; }; soldQty: number; image?: { url?: string; }; editUrl?: string; }>; listUrl: string; } export default function BestSellers({ bestSellers, listUrl }: BestSellersProps): React.JSX.Element; export declare const layout: { areaId: string; sortOrder: number; }; export declare const query = "\n query Query {\n bestSellers {\n name\n price {\n regular {\n value\n text\n }\n }\n soldQty\n image {\n url\n }\n editUrl\n }\n listUrl: url(routeId: \"productGrid\")\n }\n"; export {};