1 | import React from 'react';
|
2 | import { NativeProps } from '../../utils/native-props';
|
3 | export 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'>;
|
9 | export declare const PageIndicator: React.NamedExoticComponent<PageIndicatorProps>;
|