/** * Provides the stepper state and methods to manage stepper. */ export declare function useDpiStepper(): { steps: {}; activeStep: import('vue').Ref; activeStepIndex: import('vue').ComputedRef; previousStep: import('vue').ComputedRef; nextStep: import('vue').ComputedRef; visitedSteps: import('vue').Ref; stepPlugin: (node: any) => false | undefined; stepList: import('vue').Ref; registerStep: (stepName: string) => void; goToNextStep: () => void; goToPreviousStep: () => void; goToStep: (stepName: string) => void; goToStepByIndex: (index: number) => void; };