mobile-more
Version:
基于 antd-mobile v5 扩展移动端 UI 组件
19 lines (18 loc) • 729 B
TypeScript
/// <reference types="react" />
import BizStepsForm, { BizStepsFormProps, BizStepsFormActionType, BizStepsFormItemType } from './StepsForm';
/**
* @deprecated 即将废弃,请使用 `BizStepsFormProps` 替代。
*/
export type StepsFormProps = BizStepsFormProps;
/**
* @deprecated 即将废弃,请使用 `BizStepsFormActionType` 替代。
*/
export type StepsFormActionType = BizStepsFormActionType;
/**
* @deprecated 即将废弃,请使用 `BizStepsForm` 替代。
*/
export declare const StepsForm: import("react").FC<BizStepsFormProps> & {
StepForm: import("react").FC<import("..").BizFormProps>;
};
export type { BizStepsFormProps, BizStepsFormActionType, BizStepsFormItemType };
export default BizStepsForm;