import { InjectionKey, Ref, ComputedRef } from 'vue'; import { StepPropsT } from './types'; export interface StepInjectT { props: StepPropsT; stepItemHeadRefs: Ref>; stepItemDividerRects: ComputedRef | undefined>>; } export declare const stepInjectKey: InjectionKey;