UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

15 lines (14 loc) 537 B
/** * @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>>;