075034e04f3edd662ccd359bc9335da00407b4b34436e1cde98cb013d5eb4bcc8f5add0c2956ba2834da657833162eae22166aa50ee0a1728ea16dcd46572b 1.8 KB

12345678910111213141516171819202122232425262728
  1. import type Steps from './steps.vue';
  2. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  3. export declare const stepsProps: {
  4. readonly space: import("element-plus/es/utils").EpPropFinalized<readonly [NumberConstructor, StringConstructor], unknown, unknown, "", boolean>;
  5. readonly active: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
  6. readonly direction: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "horizontal" | "vertical", unknown, "horizontal", boolean>;
  7. readonly alignCenter: {
  8. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>>;
  9. readonly required: false;
  10. readonly validator: ((val: unknown) => boolean) | undefined;
  11. __epPropKey: true;
  12. };
  13. readonly simple: {
  14. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>>;
  15. readonly required: false;
  16. readonly validator: ((val: unknown) => boolean) | undefined;
  17. __epPropKey: true;
  18. };
  19. readonly finishStatus: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "wait" | "error" | "finish" | "success" | "process", unknown, "finish", boolean>;
  20. readonly processStatus: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "wait" | "error" | "finish" | "success" | "process", unknown, "process", boolean>;
  21. };
  22. export type StepsProps = ExtractPropTypes<typeof stepsProps>;
  23. export type StepsPropsPublic = __ExtractPublicPropTypes<typeof stepsProps>;
  24. export declare const stepsEmits: {
  25. change: (newVal: number, oldVal: number) => boolean;
  26. };
  27. export type StepsEmits = typeof stepsEmits;
  28. export type StepsInstance = InstanceType<typeof Steps> & unknown;