import type { TranslateFn } from "../../i18n"; export type ProductPhotoCarouselItem = { image: string; title?: string; href?: string; }; /** * Photo strip — shows PER_SLIDE images per row with even spacing, advances * to the next group every CYCLE_MS, dot indicators below. Lives at the * bottom of the single-garment right panel to entertain users while the * try-on is generating. */ export declare function ProductPhotoCarouselCard({ photos, items, productTitle, t, }: { photos?: string[]; items?: ProductPhotoCarouselItem[]; productTitle?: string; t: TranslateFn; }): import("react/jsx-runtime").JSX.Element | null;