import { Ref } from 'vue';
import { Props as ParentProps } from '../MeStep/types';
/**
 * 父组件参数
 */
export interface StepContext {
    name: string;
    parentProps: Ref<ParentProps>;
}
/**
 * props
 */
export interface Props {
    /**
     * 索引名称
     */
    name: string | number;
}
