import { ISettings } from '../types'; export type CarouselType = 'uniform' | 'spotlight' | 'buy_box'; export declare const DEFAULT_CAROUSEL_TYPE: CarouselType; /** * Resolve the effective carousel type using backwards-compatible defaults. * Legacy behaviour keeps the centered grow variant when the shop this look * display is set to product_list unless the new setting is explicitly provided. */ export declare const resolveCarouselType: (settings?: ISettings) => CarouselType; export declare const isSpotlightCarousel: (settings?: ISettings) => boolean;