/// <reference types="react" />
interface Props {
    images: string[];
    imageHeight?: number;
    loadingIndicatorColour?: string;
    separatorWidth?: number;
    separatorColor?: string;
    activeDotColor?: string;
    emptyDotColor?: string;
}
export declare const Slider: ({ images, imageHeight, loadingIndicatorColour, separatorWidth, separatorColor, activeDotColor, emptyDotColor }: Props) => JSX.Element;
export default Slider;
