UNPKG

428 BTypeScriptView Raw
1import type { FC, ReactNode } from 'react';
2import { NativeProps } from '../../utils/native-props';
3declare type Direction = 'horizontal' | 'vertical';
4export 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'>;
9export declare const Steps: FC<StepsProps>;
10export {};