import React from 'react'; import { StepsProps as StepsPropsAntd } from 'antd'; import './Steps.less'; import { PropsTypes } from '@orca-fe/deye-typings'; declare type StepsConfig = { key: string; title: string; description: string; }; export interface StepsProps extends Omit, 'onChange'> { steps?: StepsConfig[]; current?: number; onChange?: (current: number) => void; size?: StepsPropsAntd['size']; direction?: 'vertical' | 'horizontal'; isContainer?: boolean; } declare const Steps: { (props: StepsProps): JSX.Element; title: string; isContainer(props: any): any; propsDef: PropsTypes[]; }; export default Steps;