import { ViewStyle } from "react-native";
import React from "react";
export type CarouselWrapperProps = {
    children: React.ReactNode[];
    wrapperStyle?: ViewStyle;
    autoSlide?: boolean;
    snapDuration?: number;
    activeSlideAccentColor?: string;
    inactiveSlideAccentColor?: string;
    dotSize?: number;
};
export type InfiniteCarouselWrapperProps = {
    children: React.ReactNode[];
    wrapperStyle?: ViewStyle;
    autoSlide?: boolean;
    snapDuration?: number;
    activeSlideAccentColor?: string;
    inactiveSlideAccentColor?: string;
    dotSize?: number;
    onSlideChange?: (index: number) => void;
    contentPaddingHorizaintal?: number;
    paginationComponent?: (index: number) => React.ReactNode;
};
//# sourceMappingURL=types.d.ts.map