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