import { type ComputedRef, type WritableComputedRef } from 'vue'; import { type ArrayItem, type ElementInstance, type RadioGroupEmits, type RadioGroupModelValue, type RadioGroupProps, type SelectOption } from '../../types'; interface RadioGroupContext { id: string; model: WritableComputedRef>; options: ComputedRef[]>; elements: ComputedRef, ElementInstance>>; } export declare const useRadioGroupContext: = RadioGroupProps>(props: Props, emit: RadioGroupEmits) => RadioGroupContext; export {};