react-native-momentum-carousel
Version:
A React Native carousel component enables smooth and interactive image or content sliders with swiping capabilities. Ideal for showcasing multiple items or images in a compact space, this carousel can be customized with features like infinite scrolling, p
14 lines • 437 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
interface PaginationProps {
dataLength: number;
currentIndex: number;
paginationStyle?: {
container?: StyleProp<ViewStyle>;
bullet?: StyleProp<ViewStyle>;
activeBullet?: StyleProp<ViewStyle>;
};
}
declare const Pagination: React.FC<PaginationProps>;
export default Pagination;
//# sourceMappingURL=Pagination.d.ts.map