import type { StepsProps } from "antd/es/steps"; import React from "react"; export interface Props extends StepsProps { } export type StepItem = NonNullable[number]; export declare const Steps: (props: Props) => React.JSX.Element;