import { default as React } from 'react'; import { default as Slider, Settings } from 'react-slick'; export type ImageSliderVariant = { color: string; url: string; }; export interface ImageSliderProps { variants: ImageSliderVariant[]; children: React.ReactNode; className?: string; settings?: Settings; sliderRef?: React.RefObject; onClick?: () => void; onClickNext?: () => void; onClickPrev?: () => void; onChangeVariant?: (variant: ImageSliderVariant) => void; maxDotsToShow?: number; } export declare const ImageSlider: React.ForwardRefExoticComponent>;