@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
18 lines (17 loc) • 651 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { HTMLAttributes } from 'react';
export type ImageSliderControlsProps = {
/** The label for the ‘next’ button */
nextLabel: string;
/** The label for the ‘previous’ button */
previousLabel: string;
} & HTMLAttributes<HTMLDivElement>;
export declare const ImageSliderControls: import("react").ForwardRefExoticComponent<{
/** The label for the ‘next’ button */
nextLabel: string;
/** The label for the ‘previous’ button */
previousLabel: string;
} & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;