import { FC, ReactNode } from 'react'; import { NativeProps } from '../_util/withNativeProps'; import { TdStepsProps } from './type'; export interface StepsProps extends TdStepsProps, NativeProps { children?: ReactNode; } declare const Steps: FC; export default Steps;