1 | import type { FC, ReactNode } from 'react';
|
2 | import { NativeProps } from '../../utils/native-props';
|
3 | declare type Direction = 'horizontal' | 'vertical';
|
4 | export declare type StepsProps = {
|
5 | current?: number;
|
6 | direction?: Direction;
|
7 | children?: ReactNode;
|
8 | } & NativeProps<'--title-font-size' | '--description-font-size' | '--indicator-margin-right' | '--icon-size'>;
|
9 | export declare const Steps: FC<StepsProps>;
|
10 | export {};
|