zent
Version:
一套前端设计语言和基于React的实现
9 lines (8 loc) • 299 B
TypeScript
import { FC } from 'react';
import { Steps, IStepsProps } from '../steps';
export declare type IIndicatorProps = Omit<IStepsProps, 'type'>;
export declare type IIndicator = FC<IIndicatorProps> & {
Step: typeof Steps.Step;
};
export declare const Indicator: IIndicator;
export default Indicator;