import type { ComputedRef, InjectionKey } from 'vue'; import type { StepperOrientation, StepperTheme } from './Stepper.types'; export interface StepperProvideInject { registerStep: (nested: boolean) => void; orientation: StepperOrientation; stepCount: ComputedRef; theme: StepperTheme; showResponsiveNav: ComputedRef; } export declare const STEPPER_INJECTION_KEY: InjectionKey;