/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes } from 'react'; import type { ImageSliderProps } from './ImageSlider'; export type ImageSliderThumbnailsProps = { currentSlideId: number; imageLabel?: string; scrollToSlide: (id: number) => void; thumbnails: ImageSliderProps['images']; } & HTMLAttributes; export declare const ImageSliderThumbnails: ({ currentSlideId, imageLabel, scrollToSlide, thumbnails, ...restProps }: ImageSliderThumbnailsProps) => import("react/jsx-runtime").JSX.Element;