import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { CarouselPaginationComponentProps } from './Carousel'; export type DefaultCarouselPaginationProps = CarouselPaginationComponentProps & { /** * Custom styles for the component. */ styles?: { /** * Custom styles for the root element. */ root?: StyleProp; /** * Custom styles for the dot element. */ dot?: StyleProp; }; }; export declare const DefaultCarouselPagination: React.NamedExoticComponent; //# sourceMappingURL=DefaultCarouselPagination.d.ts.map