UNPKG

@amsterdam/design-system-react

Version:

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

14 lines (13 loc) 375 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ export type ImageSliderContextValue = { currentSlideId: number; goToNextSlide: () => void; goToPreviousSlide: () => void; goToSlideId: (id: number) => void; isAtEnd: boolean; isAtStart: boolean; }; export declare const ImageSliderContext: import("react").Context<ImageSliderContextValue>;