/**
 * @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>>;
