UNPKG

@amsterdam/design-system-react

Version:

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

16 lines (15 loc) 683 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type ImageSliderItemProps = PropsWithChildren<HTMLAttributes<HTMLDivElement>> & { /** The identifier of the item. Must match the key or order of the slides (starting at 0). */ slideId: number; }; export declare const ImageSliderItem: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & { children?: import("react").ReactNode | undefined; } & { /** The identifier of the item. Must match the key or order of the slides (starting at 0). */ slideId: number; } & import("react").RefAttributes<HTMLDivElement>>;