import { ComputedRef } from 'vue'; import { SectionListProps, ComponentNode } from '../types/canvas'; import { WizardStep } from '../components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue'; export default function useCanvasCompletionWizard(): { wizardSteps: ComputedRef; sectionListNodes: ComputedRef[]>; isCompletionWizardEnabled: ComputedRef; isCompletionWizardCompleted: ComputedRef; isCompletionWizardShowing: ComputedRef; retriggerWizard: ({ sectionListId }?: { sectionListId?: string; }) => Promise; canRetriggerWizard: () => boolean; resetWizard: () => Promise; getStrategyLabel: (strategy?: string) => string; };