import type { InjectionKey, ShallowReactive, ShallowRef } from 'vue'; import type { StepsProps, StepState } from './steps'; export declare const stepsInjectionKey: InjectionKey<{ stepsProps: StepsProps; stepsCount: ShallowRef; addStep: (step: ShallowReactive) => void; removeStep: (step: ShallowReactive) => void; activeIndex: ShallowRef; }>;