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