/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { HTMLAttributes } from 'react';
import { ImageSliderImageProps } from './ImageSlider';
export type ImageSliderThumbnailsProps = {
    imageLabel?: string;
    thumbnails: ImageSliderImageProps[];
} & HTMLAttributes<HTMLElement>;
export declare const ImageSliderThumbnails: import("react").ForwardRefExoticComponent<{
    imageLabel?: string;
    thumbnails: ImageSliderImageProps[];
} & HTMLAttributes<HTMLElement> & import("react").RefAttributes<HTMLElement>>;
