import type { InjectionKey, Ref } from 'vue' export type SlideScale = Ref export type SlideId = Ref export type RadioGroupValue = { value: Ref updateValue: (value: string) => void } export const injectKeySlideScale: InjectionKey = Symbol() export const injectKeySlideId: InjectionKey = Symbol() export const injectKeyRadioGroupValue: InjectionKey = Symbol()