UNPKG

491 BTypeScriptView Raw
1import React from 'react';
2import { NativeProps } from '../../utils/native-props';
3export declare type PageIndicatorProps = {
4 total: number;
5 current: number;
6 direction?: 'horizontal' | 'vertical';
7 color?: 'primary' | 'white';
8} & NativeProps<'--dot-color' | '--active-dot-color' | '--dot-size' | '--active-dot-size' | '--dot-border-radius' | '--active-dot-border-radius' | '--dot-spacing'>;
9export declare const PageIndicator: React.NamedExoticComponent<PageIndicatorProps>;